mirror of https://github.com/davisking/dlib.git
Added example of accessing individual pixels
This commit is contained in:
parent
ca68fc8053
commit
bb673f4099
|
@ -86,6 +86,13 @@ int main(int argc, char** argv)
|
||||||
// terminate.
|
// terminate.
|
||||||
win_hot.wait_until_closed();
|
win_hot.wait_until_closed();
|
||||||
my_window2.wait_until_closed();
|
my_window2.wait_until_closed();
|
||||||
|
|
||||||
|
|
||||||
|
// Finally, note that you can access the elements of an image using the normal [row][column]
|
||||||
|
// operator like so:
|
||||||
|
cout << horz_gradient[0][3] << endl;
|
||||||
|
cout << "number of rows in image: " << horz_gradient.nr() << endl;
|
||||||
|
cout << "number of columns in image: " << horz_gradient.nc() << endl;
|
||||||
}
|
}
|
||||||
catch (exception& e)
|
catch (exception& e)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue