GRIP
GRIP copied to clipboard
Add UI support for custom Python operations
Screenshot
Issues
- The text 'editor' is just a
TextArea
, might want to make it more full-featured - Poor layout for the
Create New
button - Need to add something to the wiki explaining how to make sockets (after PR gets merged)
Current coverage is 53.19% (diff: 18.21%)
@@ master #640 diff @@
==========================================
Files 209 213 +4
Lines 6715 6961 +246
Methods 0 0
Messages 0 0
Branches 656 693 +37
==========================================
+ Hits 3665 3703 +38
- Misses 2882 3089 +207
- Partials 168 169 +1
Powered by Codecov. Last update 765dd48...81a60b7
I think the "Create New" button needs a margin.
When searching for operations, what do you think about getting rid of the categories and just showing operations?
Also: https://github.com/TomasMikula/RichTextFX
I think it's good to keep search results separate, it makes it easier to know what category the operations belong to. Unless if it turns out that people use the search bar for the majority of the time.
closes #470
I think we're going to need to use the official OpenCV python libraries instead of accessing the Java bindings through python.
Are we waiting on this for the opencv library change?
Haven't had the time to figure out how to deal with the OpenCV python libraries
So this is going to be interesting. We don't need to include python bindings for OpenCV (you can just use pip install opencv-python
). But we will need a way of converting the JavaCV mats to and from numpy arrays
Write a library to emulate numpy in jython
I like this feature: was thinking how to dynamically add OpenCV2 calls into the tool, amd import/export the custom library for sharing
Wow, this is an old PR. IIRC it never moved forward because it's really just a python wrapper around the java libraries (which are wrappers around the C++ library...), and wouldn't support the normal python libraries people would use to interface with OpenCV like numpy or opencv2