You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's easy to make it scrollable in C#, but the video window in the provided python samples is not scollable, I wonder if it's possible to make it scrollable, which is more convenient for users and developer.
For Pyqt interface, simply assign the winId of a scrollable widget to the video by IC_SetHWnd doesn's works (the video window is still not scrollable)
The text was updated successfully, but these errors were encountered:
If I am right, you may need to create a new QWidget with scrolling capabilities and the according event handlers. The handlers must set the window positions like this:
IC_SetHWnd(hGrabber, hWnd);
IC_SetDefaultWindowPosition( hGrabber, 0);
// Show the live video in resized to 160x120. IC_SetWindowPosition( hGrabber, 0,0, 160, 120 );
It's easy to make it scrollable in C#, but the video window in the provided python samples is not scollable, I wonder if it's possible to make it scrollable, which is more convenient for users and developer.
For Pyqt interface, simply assign the winId of a scrollable widget to the video by IC_SetHWnd doesn's works (the video window is still not scrollable)
The text was updated successfully, but these errors were encountered: