So currently I open images created with openCV with something like

                cvNamedWindow( "Original Image", CV_WINDOW_AUTOSIZE );
                cvShowImage( "Original Image", original );

but my images are quite wary large and go of the screen like shown here

naked lady.. but we can not not see her boobs..(

I want windows to be resisable or at leatst of users screen size but with scrolling.

How to do such thing?

link|improve this question

1  
Please next time use really SFW images :) – CharlesB Feb 3 '11 at 14:02
feedback

2 Answers

EDIT

Short answer: you can't "enable" it, you have to implement it.

OpenCV does have trackbars -- have a look at the documentation, in particular the cvCreateTrackbar function. However, even if you use them, you still have to write the code behind it (for determining the new ROI and determining what to actually show).

If this sounds a bit too daunting, then you can wrap the displayed image using some GUI framework. Here is an example that uses OpenCV with wxWidgets. Of course, you can use any other GUI framework (for example, QT).

link|improve this answer
feedback

As far as I know (but I've only recently started looking at OpenCV) you need to build the OpenCV library with the Qt GUI library as GUI backend.

Then you get all the cute functions.

Well, OK, there's not very much, but the little that is there is documented as Qt only.

EDIT: PS, since possibly other answer might sow confusion, I'm not talking about using Qt to implement such functionality yourself. I'm talking about the functionality available in OpenCV's HighGUI module.

Cheers & hth.,

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.