2
I downloaded a project that works with images and in some cases it uses variables of this type, I did not understand what the purpose of this type of variable in image processing.
2
I downloaded a project that works with images and in some cases it uses variables of this type, I did not understand what the purpose of this type of variable in image processing.
2
Int32Rect
is a data structure expressing a rectangle whose height, width, X source and Y source are all 32-bit integers (Int32
).
Can be used, for example, for delimiting a rectangular area in an image selection, for write data on a Bitmap, even passing by game applications. The applications are several.
Browser other questions tagged c# .net image-processing
You are not signed in. Login or sign up in order to post.
Have you looked at the documentation on this
struct
, Int32rect Structure? It is just a structured to store some positioning data and size.– Zignd