-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Added Backdrop Node for Meshroom graph #2574
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
699fc71
b988a7c
41c24b1
0b79a29
23574c4
dc5d7dd
fce662b
ce25d00
8cc6c84
dd62a36
da7212b
71843e6
e653213
0adf04f
302753e
3a2384f
d72d29e
8050a6e
2f29d00
5fb7636
483a838
05c9511
e5ec7f0
419fdc7
faa7287
236ba1d
5a00360
499c994
cca0bb1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| """ Defines the Built in Plugins. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would expect the embedded nodes to be in a folder loaded automatically by Meshroom, in the same way than we are doing for external nodes:
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Discussing with @yann-lty initially to have a way to register builtin plugins. |
||
| """ | ||
| from .node import InputNode, AttributeFactory, Traits | ||
|
|
||
|
|
||
| class Backdrop(InputNode): | ||
| """ A Backdrop for other nodes. | ||
| """ | ||
|
|
||
| internalInputs = AttributeFactory.getInternalParameters(Traits.RESIZABLE) | ||
|
|
||
| category = "Utils" | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can remove that if we move it to the standard folder.