14print(
"Loaded image size: " + str(src_image.width) +
" x " + str(src_image.height))
16dst_image = src_image.map(src_image.bounds,
cvb.Size2D(src_image.size.width * 2, src_image.size.height * 3))
18print(
"Mapped image size: " + str(dst_image.width) +
" x " + str(dst_image.height))
20dst_image.save(
"Clara23.bmp")
The Common Vision Blox image.
Definition: __init__.py:2097
Stores a pair of numbers that represents the width and the height of a subject, typically a rectangle...
Definition: __init__.py:5526
str install_path()
Directory Common Vision Blox has been installed to.
Definition: __init__.py:8318