Hi. I've never done anything more than simple display or mask image in Qt so I'm not especially good at image operations in Qt - and now I have to make 1 picture from 2 and I don't exactly know how to do this.
I have one image:
._______________
| |
| 1 | y
|_______________|
x
._______________
| |
| 1 | y
|_______________|
x
To copy to clipboard, switch view to plain text mode
And I want to make:
._______________
| | |
| 1 | 1 | y
|_______|_______|
x
._______________
| | |
| 1 | 1 | y
|_______|_______|
x
To copy to clipboard, switch view to plain text mode
with exactly the same dimensions of whole picture (and both images stretched).
I'd be also graceful for some tutorials about actions like this (scaling, duplicating, mirroring and other conversions) because maybe I'll have to do something more with these pictures in near future. I also wonder if better Idea isn't to do this with OpenCV. Are this convertions fast enough in Qt to make it in real time for images like 600x300 with 20fps and cpu usage under 15% (on average machine like core duo 2.6GHz)?
Bookmarks