Video/Image Solutions

Results 22 comments of Video/Image Solutions

The problem came from the generated make file missing target file name for the cash.json,. out/Windows32/Release/libcldnn_kernel_selector32.a: kernel_selector/CMakeFiles/cldnn_kernel_selector.dir/link.txt @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/D/clDNN/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_249) "Linking CXX static library ../out/Windows32/Release/libcldnn_kernel_selector32.a"...

it is because the GPU or CPU memory ran out. if you use GPU with DCNv2 module, it is definitely GPU memory limitation and if you wait for a long...

Once you can successfully compile the DCNv2, you can run without any problem. In order to compile it, I just replaced the DCNv2 directory with CharlesShang/DCNv2 and copied a function(class...

Workaround was already proposed in the previous issue report ( Issues with Geometry #108 ). it can be solved with this simple way : mView->setSceneRect(-32767,-32726,(32727 * 2),(327267 * 2));

Exactly, the biggest node doesn't draw half where is bottom end.

Due to the multi instances of the FlowView, the eventfilter can't properly work. then, it need a way to assign the key for each QFrame. [Warning] QAction::eventFilter: Ambiguous shortcut overload:...

**_setShortcutContext(Qt::WidgetWithChildrenShortcut) solves the problem with limiting the QAction to the focused window._** // setup actions _clearSelectionAction = new QAction(QStringLiteral("Clear Selection"), this); _clearSelectionAction->setShortcut(Qt::Key_Escape);### _**_clearSelectionAction->setShortcutContext(Qt::WidgetWithChildrenShortcut);**_ connect(_clearSelectionAction, &QAction::triggered, _scene, &QGraphicsScene::clearSelection); addAction(_clearSelectionAction); _deleteSelectionAction =...

It might be a no good idea putting the name on the node because there is no an appropriate place. ![image](https://github.com/jchanvfx/NodeGraphQt/assets/3712295/347e9fb0-1886-4edd-8b00-86c88fdba28e)

I could figure out it with expanding the group node. current architecture can support only retrieving the nodes in case only the group node is expanded.

Thanks for the comment and I am eager to get it soon. Actually, after analyzing the architecture, I realized that the group node supporting is too complicate because the nesting...