1 | initial version |
Mat imageGray = Imgcodecs.imread("C:\\Users\\PC\\Desktop\\placa.jpg\"");
this probably did not work, imageGray is empty `
2 | No.2 Revision |
Mat imageGray = Imgcodecs.imread("C:\\Users\\PC\\Desktop\\placa.jpg\"");
this probably did not work, imageGray is empty
`empty
the last \"
should go (else it is not a valid filename), how does this even compile, given unmatched "
?
3 | No.3 Revision |
Mat imageGray = Imgcodecs.imread("C:\\Users\\PC\\Desktop\\placa.jpg\"");
this probably did not work, imageGray is empty
the last your filename is already invalid, since \"
should go (else it is not will resolve to a valid filename), how does this even compile, given unmatched trailing "\ ?
try:
Mat imageGray = Imgcodecs.imread("C:\\Users\\PC\\Desktop\\placa.jpg");
4 | No.4 Revision |
Mat imageGray = Imgcodecs.imread("C:\\Users\\PC\\Desktop\\placa.jpg\"");
this probably did not work, imageGray is emptyempty.
your filename is already invalid, since \"
will resolve to a trailing \
try:
Mat imageGray = Imgcodecs.imread("C:\\Users\\PC\\Desktop\\placa.jpg");
5 | No.5 Revision |
Mat imageGray = Imgcodecs.imread("C:\\Users\\PC\\Desktop\\placa.jpg\"");
this did not work, imageGray is empty.
your filename is already invalid, since \"
will resolve to a trailing \
try:
Mat imageGray = Imgcodecs.imread("C:\\Users\\PC\\Desktop\\placa.jpg");
tips for the future:
if (image.empty())
when using imread(), using VideoCapture, etc.6 | No.6 Revision |
Mat imageGray = Imgcodecs.imread("C:\\Users\\PC\\Desktop\\placa.jpg\"");
this did not work, imageGray is empty.
your filename is already invalid, since \"
will resolve to a trailing \
try:
Mat imageGray = Imgcodecs.imread("C:\\Users\\PC\\Desktop\\placa.jpg");
tips for the future:
if (image.empty())
when using imread(), using VideoCapture, 7 | No.7 Revision |
Mat imageGray = Imgcodecs.imread("C:\\Users\\PC\\Desktop\\placa.jpg\"");
this did not work, imageGray is empty.
your filename is already invalid, since \"
will resolve to a trailing \
try:
Mat imageGray = Imgcodecs.imread("C:\\Users\\PC\\Desktop\\placa.jpg");
tips for the future:
if (image.empty())
when using imread(), using VideoCapture, etc. IO can never be trusted8 | No.8 Revision |
Mat imageGray = Imgcodecs.imread("C:\\Users\\PC\\Desktop\\placa.jpg\"");
this did not work, imageGray is empty.
your filename is already invalid, since \"
will resolve to a trailing \
try:
Mat imageGray = Imgcodecs.imread("C:\\Users\\PC\\Desktop\\placa.jpg");
tips for the future:
if (image.empty())
when using imread(), using VideoCapture, etc. IO can never be trusted