nrow, ncol return the number of rows or columns present in a
VideoWriter object.
Arguments
- x
A
VideoWriterobject.
See also
dim which returns all
dimensions.
Author
Simon Garnier, garnier@njit.edu
Examples
if (FALSE) { # \dontrun{
writer <- videoWriter("test.mp4", "H264", 25, 1080, 1920)
nrow(writer)
ncol(writer)
release(writer)
} # }