destroyDisplay
closes a specific existing
- Image
display window. destroyAllDisplays
all existing
- Image
display window.
Image
display window. destroyAllDisplays
all existing
+ Image
display window.
Value
Author
diff --git a/docs/reference/dim.Rcpp_Image.html b/docs/reference/dim.Rcpp_Image.html index afc5f0ec..065d40bc 100644 --- a/docs/reference/dim.Rcpp_Image.html +++ b/docs/reference/dim.Rcpp_Image.html @@ -59,7 +59,7 @@Retrieve the dimensions an Image
object.
Retrieve the dimensions an Image
object.
Usage
Arguments
- x
-An Image
object.
+An Image
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -92,10 +92,9 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
dim(balloon)
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
+#> [1] 360 640 3
diff --git a/docs/reference/dim.Rcpp_Queue.html b/docs/reference/dim.Rcpp_Queue.html
index eb2e5b32..77d54d67 100644
--- a/docs/reference/dim.Rcpp_Queue.html
+++ b/docs/reference/dim.Rcpp_Queue.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a Queue
object.
+ Retrieve the dimensions a Queue
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A Queue
object.
+A Queue
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -92,8 +92,8 @@ Author<
Examples
- balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
-buf <- queue(balloon)
+ balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
+buf <- queue(balloon)
dim(buf)
#> [1] 360 640 1
diff --git a/docs/reference/dim.Rcpp_Stream.html b/docs/reference/dim.Rcpp_Stream.html
index 31bbfba6..082169e4 100644
--- a/docs/reference/dim.Rcpp_Stream.html
+++ b/docs/reference/dim.Rcpp_Stream.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a Stream
object.
+ Retrieve the dimensions a Stream
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A Stream
object.
+A Stream
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -93,7 +93,7 @@ Author<
Examples
if (FALSE) {
-live <- stream(0)
+live <- stream(0)
sim(live)
release(live)
}
diff --git a/docs/reference/dim.Rcpp_Video.html b/docs/reference/dim.Rcpp_Video.html
index aef004dd..3ed63b87 100644
--- a/docs/reference/dim.Rcpp_Video.html
+++ b/docs/reference/dim.Rcpp_Video.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a Video
object.
+ Retrieve the dimensions a Video
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A Video
object.
+A Video
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -92,7 +92,7 @@ Author<
Examples
- balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
+ balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
dim(balloon)
#> [1] 360 640
diff --git a/docs/reference/dim.Rcpp_VideoWriter.html b/docs/reference/dim.Rcpp_VideoWriter.html
index 7867465f..d92eba62 100644
--- a/docs/reference/dim.Rcpp_VideoWriter.html
+++ b/docs/reference/dim.Rcpp_VideoWriter.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a VideoWriter
object.
+ Retrieve the dimensions a VideoWriter
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A VideoWriter
object.
+A VideoWriter
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -93,7 +93,7 @@ Author<
Examples
if (FALSE) {
-writer <- videoWriter("test.mp4", "H264", 25, 1080, 1920)
+writer <- videoWriter("test.mp4", "H264", 25, 1080, 1920)
dim(writer)
release(writer)
}
diff --git a/docs/reference/display.html b/docs/reference/display.html
index e8335730..aeb1f2e1 100644
--- a/docs/reference/display.html
+++ b/docs/reference/display.html
@@ -61,16 +61,16 @@
- display
displays Image
objects in special
+
display
displays Image
objects in special
windows created by newDisplay
(or creates it if it does not
exist yet). This function is faster than the generic plot.Image
- function for displaying Image
objects, but cannot be used in
+ function for displaying Image
objects, but cannot be used in
combination with base R plotting utilities.
@@ -89,7 +89,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- window_name
@@ -126,7 +126,7 @@ Value
See also
- Image
, newDisplay
, destroyDisplay
,
+
@@ -137,7 +137,7 @@ Author<
Examples
if (FALSE) {
-balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
+balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
display(balloon, height = nrow(balloon), width = ncol(balloon))
}
diff --git a/docs/reference/distanceTransform.html b/docs/reference/distanceTransform.html
index 8fe02839..b7a0b076 100644
--- a/docs/reference/distanceTransform.html
+++ b/docs/reference/distanceTransform.html
@@ -73,7 +73,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- distance_type
@@ -99,12 +99,12 @@ ArgumentsImage object is created and the results
+values:"new":a new Image
object is created and the results
are stored inside (the default).
"self":the results are stored back into image
(faster but
destructive).
-An Image
object:the results are stored in another
- existing Image
object. This is fast and will not replace the
+
An Image
object:the results are stored in another
+ existing Image
object. This is fast and will not replace the
content of image
but will replace that of target
. Note that
target
must have the same dimensions as image
, must have a
single channel, and its bit depth must be either "8U" or "32F".
@@ -115,17 +115,17 @@ ArgumentsValue
-If target="new"
, the function returns an Image
+If target="new"
, the function returns an Image
object. If target="self"
, the function returns nothing and modifies
-image
in place. If target
is an Image
object,
- the function returns nothing and modifies that Image
object in
+
image
in place. If target
is an Image
object,
+ the function returns nothing and modifies that Image
object in
place.
-An Image
object.
+An Image
object.
Author
@@ -134,14 +134,10 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
changeColorSpace(balloon, "GRAY", target = "self")
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
bin <- balloon < 200
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
dst <- distanceTransform(bin)
-#> Error in eval(expr, envir, enclos): object 'bin' not found
diff --git a/docs/reference/drawArrow.html b/docs/reference/drawArrow.html
index de539648..f71f9b1a 100644
--- a/docs/reference/drawArrow.html
+++ b/docs/reference/drawArrow.html
@@ -57,15 +57,15 @@
drawArrow
draws arrow segments from the first point to
- the second over an Image
object. This operation is destructive:
- it changes irreversibly the Image
object and cannot be undone.
+ the second over an Image
object. This operation is destructive:
+ it changes irreversibly the Image
object and cannot be undone.
@@ -85,7 +85,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- pt1_x
@@ -133,7 +133,7 @@ Value
Author
@@ -142,10 +142,8 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
drawArrow(balloon, 1, 1, ncol(balloon) / 2, nrow(balloon) / 2, thickness = 3)
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
diff --git a/docs/reference/drawCircle.html b/docs/reference/drawCircle.html
index d98425e1..b0d77655 100644
--- a/docs/reference/drawCircle.html
+++ b/docs/reference/drawCircle.html
@@ -57,15 +57,15 @@
- drawCirlc
draws circles over an Image
+
drawCirlc
draws circles over an Image
object. This operation is destructive: it changes irreversibly the
- Image
object and cannot be undone.
+ Image
object and cannot be undone.
@@ -76,7 +76,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- x
@@ -114,7 +114,7 @@ Value
Author
@@ -123,10 +123,8 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <-
Arguments
- x -
An
Image
object.
+An
Image
object.
Value
Author
@@ -92,10 +92,9 @@Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
dim(balloon)
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
+#> [1] 360 640 3
diff --git a/docs/reference/dim.Rcpp_Queue.html b/docs/reference/dim.Rcpp_Queue.html
index eb2e5b32..77d54d67 100644
--- a/docs/reference/dim.Rcpp_Queue.html
+++ b/docs/reference/dim.Rcpp_Queue.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a Queue
object.
+ Retrieve the dimensions a Queue
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A Queue
object.
+A Queue
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -92,8 +92,8 @@ Author<
Examples
- balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
-buf <- queue(balloon)
+ balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
+buf <- queue(balloon)
dim(buf)
#> [1] 360 640 1
diff --git a/docs/reference/dim.Rcpp_Stream.html b/docs/reference/dim.Rcpp_Stream.html
index 31bbfba6..082169e4 100644
--- a/docs/reference/dim.Rcpp_Stream.html
+++ b/docs/reference/dim.Rcpp_Stream.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a Stream
object.
+ Retrieve the dimensions a Stream
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A Stream
object.
+A Stream
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -93,7 +93,7 @@ Author<
Examples
if (FALSE) {
-live <- stream(0)
+live <- stream(0)
sim(live)
release(live)
}
diff --git a/docs/reference/dim.Rcpp_Video.html b/docs/reference/dim.Rcpp_Video.html
index aef004dd..3ed63b87 100644
--- a/docs/reference/dim.Rcpp_Video.html
+++ b/docs/reference/dim.Rcpp_Video.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a Video
object.
+ Retrieve the dimensions a Video
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A Video
object.
+A Video
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -92,7 +92,7 @@ Author<
Examples
- balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
+ balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
dim(balloon)
#> [1] 360 640
diff --git a/docs/reference/dim.Rcpp_VideoWriter.html b/docs/reference/dim.Rcpp_VideoWriter.html
index 7867465f..d92eba62 100644
--- a/docs/reference/dim.Rcpp_VideoWriter.html
+++ b/docs/reference/dim.Rcpp_VideoWriter.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a VideoWriter
object.
+ Retrieve the dimensions a VideoWriter
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A VideoWriter
object.
+A VideoWriter
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -93,7 +93,7 @@ Author<
Examples
if (FALSE) {
-writer <- videoWriter("test.mp4", "H264", 25, 1080, 1920)
+writer <- videoWriter("test.mp4", "H264", 25, 1080, 1920)
dim(writer)
release(writer)
}
diff --git a/docs/reference/display.html b/docs/reference/display.html
index e8335730..aeb1f2e1 100644
--- a/docs/reference/display.html
+++ b/docs/reference/display.html
@@ -61,16 +61,16 @@
- display
displays Image
objects in special
+
display
displays Image
objects in special
windows created by newDisplay
(or creates it if it does not
exist yet). This function is faster than the generic plot.Image
- function for displaying Image
objects, but cannot be used in
+ function for displaying Image
objects, but cannot be used in
combination with base R plotting utilities.
@@ -89,7 +89,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- window_name
@@ -126,7 +126,7 @@ Value
See also
- Image
, newDisplay
, destroyDisplay
,
+
@@ -137,7 +137,7 @@ Author<
Examples
if (FALSE) {
-balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
+balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
display(balloon, height = nrow(balloon), width = ncol(balloon))
}
diff --git a/docs/reference/distanceTransform.html b/docs/reference/distanceTransform.html
index 8fe02839..b7a0b076 100644
--- a/docs/reference/distanceTransform.html
+++ b/docs/reference/distanceTransform.html
@@ -73,7 +73,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- distance_type
@@ -99,12 +99,12 @@ ArgumentsImage object is created and the results
+values:"new":a new Image
object is created and the results
are stored inside (the default).
"self":the results are stored back into image
(faster but
destructive).
-An Image
object:the results are stored in another
- existing Image
object. This is fast and will not replace the
+
An Image
object:the results are stored in another
+ existing Image
object. This is fast and will not replace the
content of image
but will replace that of target
. Note that
target
must have the same dimensions as image
, must have a
single channel, and its bit depth must be either "8U" or "32F".
@@ -115,17 +115,17 @@ ArgumentsValue
-If target="new"
, the function returns an Image
+If target="new"
, the function returns an Image
object. If target="self"
, the function returns nothing and modifies
-image
in place. If target
is an Image
object,
- the function returns nothing and modifies that Image
object in
+
image
in place. If target
is an Image
object,
+ the function returns nothing and modifies that Image
object in
place.
-An Image
object.
+An Image
object.
Author
@@ -134,14 +134,10 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
changeColorSpace(balloon, "GRAY", target = "self")
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
bin <- balloon < 200
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
dst <- distanceTransform(bin)
-#> Error in eval(expr, envir, enclos): object 'bin' not found
diff --git a/docs/reference/drawArrow.html b/docs/reference/drawArrow.html
index de539648..f71f9b1a 100644
--- a/docs/reference/drawArrow.html
+++ b/docs/reference/drawArrow.html
@@ -57,15 +57,15 @@
drawArrow
draws arrow segments from the first point to
- the second over an Image
object. This operation is destructive:
- it changes irreversibly the Image
object and cannot be undone.
+ the second over an Image
object. This operation is destructive:
+ it changes irreversibly the Image
object and cannot be undone.
@@ -85,7 +85,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- pt1_x
@@ -133,7 +133,7 @@ Value
Author
@@ -142,10 +142,8 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
drawArrow(balloon, 1, 1, ncol(balloon) / 2, nrow(balloon) / 2, thickness = 3)
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
diff --git a/docs/reference/drawCircle.html b/docs/reference/drawCircle.html
index d98425e1..b0d77655 100644
--- a/docs/reference/drawCircle.html
+++ b/docs/reference/drawCircle.html
@@ -57,15 +57,15 @@
- drawCirlc
draws circles over an Image
+
drawCirlc
draws circles over an Image
object. This operation is destructive: it changes irreversibly the
- Image
object and cannot be undone.
+ Image
object and cannot be undone.
@@ -76,7 +76,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- x
@@ -114,7 +114,7 @@ Value
Author
@@ -123,10 +123,8 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <-
Examples
-balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
dim(balloon)
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
+#> [1] 360 640 3
Retrieve the dimensions a Queue
object.
Retrieve the dimensions a Queue
object.
Usage
Arguments
- x
-A Queue
object.
+A Queue
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -92,8 +92,8 @@ Author<
Examples
- balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
-buf <- queue(balloon)
+ balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
+buf <- queue(balloon)
dim(buf)
#> [1] 360 640 1
diff --git a/docs/reference/dim.Rcpp_Stream.html b/docs/reference/dim.Rcpp_Stream.html
index 31bbfba6..082169e4 100644
--- a/docs/reference/dim.Rcpp_Stream.html
+++ b/docs/reference/dim.Rcpp_Stream.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a Stream
object.
+ Retrieve the dimensions a Stream
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A Stream
object.
+A Stream
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -93,7 +93,7 @@ Author<
Examples
if (FALSE) {
-live <- stream(0)
+live <- stream(0)
sim(live)
release(live)
}
diff --git a/docs/reference/dim.Rcpp_Video.html b/docs/reference/dim.Rcpp_Video.html
index aef004dd..3ed63b87 100644
--- a/docs/reference/dim.Rcpp_Video.html
+++ b/docs/reference/dim.Rcpp_Video.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a Video
object.
+ Retrieve the dimensions a Video
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A Video
object.
+A Video
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -92,7 +92,7 @@ Author<
Examples
- balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
+ balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
dim(balloon)
#> [1] 360 640
diff --git a/docs/reference/dim.Rcpp_VideoWriter.html b/docs/reference/dim.Rcpp_VideoWriter.html
index 7867465f..d92eba62 100644
--- a/docs/reference/dim.Rcpp_VideoWriter.html
+++ b/docs/reference/dim.Rcpp_VideoWriter.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a VideoWriter
object.
+ Retrieve the dimensions a VideoWriter
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A VideoWriter
object.
+A VideoWriter
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -93,7 +93,7 @@ Author<
Examples
if (FALSE) {
-writer <- videoWriter("test.mp4", "H264", 25, 1080, 1920)
+writer <- videoWriter("test.mp4", "H264", 25, 1080, 1920)
dim(writer)
release(writer)
}
diff --git a/docs/reference/display.html b/docs/reference/display.html
index e8335730..aeb1f2e1 100644
--- a/docs/reference/display.html
+++ b/docs/reference/display.html
@@ -61,16 +61,16 @@
- display
displays Image
objects in special
+
display
displays Image
objects in special
windows created by newDisplay
(or creates it if it does not
exist yet). This function is faster than the generic plot.Image
- function for displaying Image
objects, but cannot be used in
+ function for displaying Image
objects, but cannot be used in
combination with base R plotting utilities.
@@ -89,7 +89,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- window_name
@@ -126,7 +126,7 @@ Value
See also
- Image
, newDisplay
, destroyDisplay
,
+
@@ -137,7 +137,7 @@ Author<
Examples
if (FALSE) {
-balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
+balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
display(balloon, height = nrow(balloon), width = ncol(balloon))
}
diff --git a/docs/reference/distanceTransform.html b/docs/reference/distanceTransform.html
index 8fe02839..b7a0b076 100644
--- a/docs/reference/distanceTransform.html
+++ b/docs/reference/distanceTransform.html
@@ -73,7 +73,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- distance_type
@@ -99,12 +99,12 @@ ArgumentsImage object is created and the results
+values:"new":a new Image
object is created and the results
are stored inside (the default).
"self":the results are stored back into image
(faster but
destructive).
-An Image
object:the results are stored in another
- existing Image
object. This is fast and will not replace the
+
An Image
object:the results are stored in another
+ existing Image
object. This is fast and will not replace the
content of image
but will replace that of target
. Note that
target
must have the same dimensions as image
, must have a
single channel, and its bit depth must be either "8U" or "32F".
@@ -115,17 +115,17 @@ ArgumentsValue
-If target="new"
, the function returns an Image
+If target="new"
, the function returns an Image
object. If target="self"
, the function returns nothing and modifies
-image
in place. If target
is an Image
object,
- the function returns nothing and modifies that Image
object in
+
image
in place. If target
is an Image
object,
+ the function returns nothing and modifies that Image
object in
place.
-An Image
object.
+An Image
object.
Author
@@ -134,14 +134,10 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
changeColorSpace(balloon, "GRAY", target = "self")
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
bin <- balloon < 200
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
dst <- distanceTransform(bin)
-#> Error in eval(expr, envir, enclos): object 'bin' not found
diff --git a/docs/reference/drawArrow.html b/docs/reference/drawArrow.html
index de539648..f71f9b1a 100644
--- a/docs/reference/drawArrow.html
+++ b/docs/reference/drawArrow.html
@@ -57,15 +57,15 @@
drawArrow
draws arrow segments from the first point to
- the second over an Image
object. This operation is destructive:
- it changes irreversibly the Image
object and cannot be undone.
+ the second over an Image
object. This operation is destructive:
+ it changes irreversibly the Image
object and cannot be undone.
@@ -85,7 +85,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- pt1_x
@@ -133,7 +133,7 @@ Value
Author
@@ -142,10 +142,8 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
drawArrow(balloon, 1, 1, ncol(balloon) / 2, nrow(balloon) / 2, thickness = 3)
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
diff --git a/docs/reference/drawCircle.html b/docs/reference/drawCircle.html
index d98425e1..b0d77655 100644
--- a/docs/reference/drawCircle.html
+++ b/docs/reference/drawCircle.html
@@ -57,15 +57,15 @@
- drawCirlc
draws circles over an Image
+
drawCirlc
draws circles over an Image
object. This operation is destructive: it changes irreversibly the
- Image
object and cannot be undone.
+ Image
object and cannot be undone.
@@ -76,7 +76,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- x
@@ -114,7 +114,7 @@ Value
Author
@@ -123,10 +123,8 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <-
Arguments
- x -
A
Queue
object.
+A
Queue
object.
Value
Author
@@ -92,8 +92,8 @@Author<
Examples
- balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
-buf <- queue(balloon)
+ balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
+buf <- queue(balloon)
dim(buf)
#> [1] 360 640 1
diff --git a/docs/reference/dim.Rcpp_Stream.html b/docs/reference/dim.Rcpp_Stream.html
index 31bbfba6..082169e4 100644
--- a/docs/reference/dim.Rcpp_Stream.html
+++ b/docs/reference/dim.Rcpp_Stream.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a Stream
object.
+ Retrieve the dimensions a Stream
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A Stream
object.
+A Stream
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -93,7 +93,7 @@ Author<
Examples
if (FALSE) {
-live <- stream(0)
+live <- stream(0)
sim(live)
release(live)
}
diff --git a/docs/reference/dim.Rcpp_Video.html b/docs/reference/dim.Rcpp_Video.html
index aef004dd..3ed63b87 100644
--- a/docs/reference/dim.Rcpp_Video.html
+++ b/docs/reference/dim.Rcpp_Video.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a Video
object.
+ Retrieve the dimensions a Video
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A Video
object.
+A Video
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -92,7 +92,7 @@ Author<
Examples
- balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
+ balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
dim(balloon)
#> [1] 360 640
diff --git a/docs/reference/dim.Rcpp_VideoWriter.html b/docs/reference/dim.Rcpp_VideoWriter.html
index 7867465f..d92eba62 100644
--- a/docs/reference/dim.Rcpp_VideoWriter.html
+++ b/docs/reference/dim.Rcpp_VideoWriter.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a VideoWriter
object.
+ Retrieve the dimensions a VideoWriter
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A VideoWriter
object.
+A VideoWriter
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -93,7 +93,7 @@ Author<
Examples
if (FALSE) {
-writer <- videoWriter("test.mp4", "H264", 25, 1080, 1920)
+writer <- videoWriter("test.mp4", "H264", 25, 1080, 1920)
dim(writer)
release(writer)
}
diff --git a/docs/reference/display.html b/docs/reference/display.html
index e8335730..aeb1f2e1 100644
--- a/docs/reference/display.html
+++ b/docs/reference/display.html
@@ -61,16 +61,16 @@
- display
displays Image
objects in special
+
display
displays Image
objects in special
windows created by newDisplay
(or creates it if it does not
exist yet). This function is faster than the generic plot.Image
- function for displaying Image
objects, but cannot be used in
+ function for displaying Image
objects, but cannot be used in
combination with base R plotting utilities.
@@ -89,7 +89,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- window_name
@@ -126,7 +126,7 @@ Value
See also
- Image
, newDisplay
, destroyDisplay
,
+
@@ -137,7 +137,7 @@ Author<
Examples
if (FALSE) {
-balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
+balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
display(balloon, height = nrow(balloon), width = ncol(balloon))
}
diff --git a/docs/reference/distanceTransform.html b/docs/reference/distanceTransform.html
index 8fe02839..b7a0b076 100644
--- a/docs/reference/distanceTransform.html
+++ b/docs/reference/distanceTransform.html
@@ -73,7 +73,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- distance_type
@@ -99,12 +99,12 @@ ArgumentsImage object is created and the results
+values:"new":a new Image
object is created and the results
are stored inside (the default).
"self":the results are stored back into image
(faster but
destructive).
-An Image
object:the results are stored in another
- existing Image
object. This is fast and will not replace the
+
An Image
object:the results are stored in another
+ existing Image
object. This is fast and will not replace the
content of image
but will replace that of target
. Note that
target
must have the same dimensions as image
, must have a
single channel, and its bit depth must be either "8U" or "32F".
@@ -115,17 +115,17 @@ ArgumentsValue
-If target="new"
, the function returns an Image
+If target="new"
, the function returns an Image
object. If target="self"
, the function returns nothing and modifies
-image
in place. If target
is an Image
object,
- the function returns nothing and modifies that Image
object in
+
image
in place. If target
is an Image
object,
+ the function returns nothing and modifies that Image
object in
place.
-An Image
object.
+An Image
object.
Author
@@ -134,14 +134,10 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
changeColorSpace(balloon, "GRAY", target = "self")
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
bin <- balloon < 200
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
dst <- distanceTransform(bin)
-#> Error in eval(expr, envir, enclos): object 'bin' not found
diff --git a/docs/reference/drawArrow.html b/docs/reference/drawArrow.html
index de539648..f71f9b1a 100644
--- a/docs/reference/drawArrow.html
+++ b/docs/reference/drawArrow.html
@@ -57,15 +57,15 @@
drawArrow
draws arrow segments from the first point to
- the second over an Image
object. This operation is destructive:
- it changes irreversibly the Image
object and cannot be undone.
+ the second over an Image
object. This operation is destructive:
+ it changes irreversibly the Image
object and cannot be undone.
@@ -85,7 +85,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- pt1_x
@@ -133,7 +133,7 @@ Value
Author
@@ -142,10 +142,8 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
drawArrow(balloon, 1, 1, ncol(balloon) / 2, nrow(balloon) / 2, thickness = 3)
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
diff --git a/docs/reference/drawCircle.html b/docs/reference/drawCircle.html
index d98425e1..b0d77655 100644
--- a/docs/reference/drawCircle.html
+++ b/docs/reference/drawCircle.html
@@ -57,15 +57,15 @@
- drawCirlc
draws circles over an Image
+
drawCirlc
draws circles over an Image
object. This operation is destructive: it changes irreversibly the
- Image
object and cannot be undone.
+ Image
object and cannot be undone.
@@ -76,7 +76,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- x
@@ -114,7 +114,7 @@ Value
Author
@@ -123,10 +123,8 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <-
Examples
-balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
-buf <- queue(balloon)
+ balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
+buf <- queue(balloon)
dim(buf)
#> [1] 360 640 1
diff --git a/docs/reference/dim.Rcpp_Stream.html b/docs/reference/dim.Rcpp_Stream.html
index 31bbfba6..082169e4 100644
--- a/docs/reference/dim.Rcpp_Stream.html
+++ b/docs/reference/dim.Rcpp_Stream.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a Stream
object.
+ Retrieve the dimensions a Stream
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A Stream
object.
+A Stream
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -93,7 +93,7 @@ Author<
Examples
if (FALSE) {
-live <- stream(0)
+live <- stream(0)
sim(live)
release(live)
}
diff --git a/docs/reference/dim.Rcpp_Video.html b/docs/reference/dim.Rcpp_Video.html
index aef004dd..3ed63b87 100644
--- a/docs/reference/dim.Rcpp_Video.html
+++ b/docs/reference/dim.Rcpp_Video.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a Video
object.
+ Retrieve the dimensions a Video
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A Video
object.
+A Video
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -92,7 +92,7 @@ Author<
Examples
- balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
+ balloon <- video(system.file("sample_vid/Balloon.mp4", package = "Rvision"))
dim(balloon)
#> [1] 360 640
diff --git a/docs/reference/dim.Rcpp_VideoWriter.html b/docs/reference/dim.Rcpp_VideoWriter.html
index 7867465f..d92eba62 100644
--- a/docs/reference/dim.Rcpp_VideoWriter.html
+++ b/docs/reference/dim.Rcpp_VideoWriter.html
@@ -59,7 +59,7 @@
- Retrieve the dimensions a VideoWriter
object.
+ Retrieve the dimensions a VideoWriter
object.
@@ -71,7 +71,7 @@ Usage
Arguments
- x
-A VideoWriter
object.
+A VideoWriter
object.
@@ -83,7 +83,7 @@ Value
Author
@@ -93,7 +93,7 @@ Author<
Examples
if (FALSE) {
-writer <- videoWriter("test.mp4", "H264", 25, 1080, 1920)
+writer <- videoWriter("test.mp4", "H264", 25, 1080, 1920)
dim(writer)
release(writer)
}
diff --git a/docs/reference/display.html b/docs/reference/display.html
index e8335730..aeb1f2e1 100644
--- a/docs/reference/display.html
+++ b/docs/reference/display.html
@@ -61,16 +61,16 @@
- display
displays Image
objects in special
+
display
displays Image
objects in special
windows created by newDisplay
(or creates it if it does not
exist yet). This function is faster than the generic plot.Image
- function for displaying Image
objects, but cannot be used in
+ function for displaying Image
objects, but cannot be used in
combination with base R plotting utilities.
@@ -89,7 +89,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- window_name
@@ -126,7 +126,7 @@ Value
See also
- Image
, newDisplay
, destroyDisplay
,
+
@@ -137,7 +137,7 @@ Author<
Examples
if (FALSE) {
-balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
+balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
display(balloon, height = nrow(balloon), width = ncol(balloon))
}
diff --git a/docs/reference/distanceTransform.html b/docs/reference/distanceTransform.html
index 8fe02839..b7a0b076 100644
--- a/docs/reference/distanceTransform.html
+++ b/docs/reference/distanceTransform.html
@@ -73,7 +73,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- distance_type
@@ -99,12 +99,12 @@ ArgumentsImage object is created and the results
+values:"new":a new Image
object is created and the results
are stored inside (the default).
"self":the results are stored back into image
(faster but
destructive).
-An Image
object:the results are stored in another
- existing Image
object. This is fast and will not replace the
+
An Image
object:the results are stored in another
+ existing Image
object. This is fast and will not replace the
content of image
but will replace that of target
. Note that
target
must have the same dimensions as image
, must have a
single channel, and its bit depth must be either "8U" or "32F".
@@ -115,17 +115,17 @@ ArgumentsValue
-If target="new"
, the function returns an Image
+If target="new"
, the function returns an Image
object. If target="self"
, the function returns nothing and modifies
-image
in place. If target
is an Image
object,
- the function returns nothing and modifies that Image
object in
+
image
in place. If target
is an Image
object,
+ the function returns nothing and modifies that Image
object in
place.
-An Image
object.
+An Image
object.
Author
@@ -134,14 +134,10 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
changeColorSpace(balloon, "GRAY", target = "self")
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
bin <- balloon < 200
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
dst <- distanceTransform(bin)
-#> Error in eval(expr, envir, enclos): object 'bin' not found
diff --git a/docs/reference/drawArrow.html b/docs/reference/drawArrow.html
index de539648..f71f9b1a 100644
--- a/docs/reference/drawArrow.html
+++ b/docs/reference/drawArrow.html
@@ -57,15 +57,15 @@
drawArrow
draws arrow segments from the first point to
- the second over an Image
object. This operation is destructive:
- it changes irreversibly the Image
object and cannot be undone.
+ the second over an Image
object. This operation is destructive:
+ it changes irreversibly the Image
object and cannot be undone.
@@ -85,7 +85,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- pt1_x
@@ -133,7 +133,7 @@ Value
Author
@@ -142,10 +142,8 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
drawArrow(balloon, 1, 1, ncol(balloon) / 2, nrow(balloon) / 2, thickness = 3)
-#> Error in eval(expr, envir, enclos): object 'balloon' not found
diff --git a/docs/reference/drawCircle.html b/docs/reference/drawCircle.html
index d98425e1..b0d77655 100644
--- a/docs/reference/drawCircle.html
+++ b/docs/reference/drawCircle.html
@@ -57,15 +57,15 @@
- drawCirlc
draws circles over an Image
+
drawCirlc
draws circles over an Image
object. This operation is destructive: it changes irreversibly the
- Image
object and cannot be undone.
+ Image
object and cannot be undone.
@@ -76,7 +76,7 @@ Usage
Arguments
- image
-An Image
object.
+An Image
object.
- x
@@ -114,7 +114,7 @@ Value
Author
@@ -123,10 +123,8 @@ Author<
Examples
- balloon <- image(system.file("sample_img/balloon1.png", package = "Rvision"))
-#> Error: 'Image' is not an exported object from 'namespace:Rvision'
+ balloon <-