![]() |
RGBImage Issues
Has anyone else had an issue trying to create an RGBImage from a file? When using this code:
Code:
RGBImage* image = new RGBImage("testPattern.jpg")I ended up getting it to work by creating my own RGBImage using the nivision stuff though. |
Re: RGBImage Issues
This code will be running on the robot when it runs - don't know if that's obvious or not -- and as such, 'testPattern.jpg' must be on the robot and must be in the 'current working directory' of the running program. If you're feeling confident that all this makes sense so far, I would suggest that you try doing a little test to ensure that the file is really "there" by opening the file and reading the first 4 bytes of the file or something...if the following all checks out then I'd ask ... how are you creating this testPattern.jpg file? Could it have been saved in a different format than .jpg by a writing function? I seem to recall a situation last year where files we were writing wound up being BMP format instead of JPG due to a saving issue.
Code:
FILE* fp = fopen("testPattern.jpg", "rb"); |
Re: RGBImage Issues
This is a compile-time error, yes? I place this code in my compiler and it works...
Oh. You're missing a semicolon. Try Code:
RGBImage* image = new RGBImage("testPattern.jpg"); |
Re: RGBImage Issues
Quote:
|
| All times are GMT -5. The time now is 18:23. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi