Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-04-27 | WIPwip | Benjamin Franzke | 1 | -3/+6 | |
2016-04-27 | wimmel.frag: Define the required precisionHEADmaster | Benjamin Franzke | 1 | -0/+2 | |
Or we get errors like: fragment shader info: 0:1(1): error: no precision specified this scope for type `vec2' 0:4(1): error: no precision specified this scope for type `vec2' 0:6(1): error: no precision specified this scope for type `vec4' 0:13(2): error: no precision specified this scope for type `float' 0:17(2): error: no precision specified this scope for type `vec4' 0:18(2): error: no precision specified this scope for type `vec4' | |||||
2012-06-20 | cvg: Add VIDIOC_QUERYMENU perror hack | Benjamin Franzke | 1 | -0/+11 | |
2012-05-25 | cvg: Add Sobel filter | Benjamin Franzke | 2 | -0/+25 | |
2012-05-25 | cvg: Use image depth and channels properties in blits | Benjamin Franzke | 1 | -11/+9 | |
2012-05-25 | cvg: Use cvGetSize in capture | Benjamin Franzke | 1 | -1/+1 | |
2012-05-25 | cvg: Add GoodFeaturesToTrack filter | Benjamin Franzke | 2 | -0/+36 | |
2012-05-25 | cvg: Add a pass-through filter | Benjamin Franzke | 2 | -7/+21 | |
And rename None to Hide. | |||||
2012-05-25 | cvg: Replace gauss button with a GtkComboxBox | Benjamin Franzke | 2 | -28/+27 | |
2012-05-25 | cvg: Add simple webcam capture | Benjamin Franzke | 1 | -13/+110 | |
2012-05-02 | harris: Change threshold to 0.001 | Benjamin Franzke | 1 | -3/+3 | |
2012-05-02 | harris: Check for n=2 neighbours | Benjamin Franzke | 1 | -1/+1 | |
2012-04-26 | harris: Increase neighbour area | Benjamin Franzke | 1 | -2/+3 | |
2012-04-26 | harris: Consistency fix, use i,j as shifts for x,y always | Benjamin Franzke | 1 | -4/+4 | |
2012-04-26 | harris: Another pointer arithmetic style fix in calc_window_sum | Benjamin Franzke | 1 | -8/+7 | |
2012-04-26 | harris: Just increase convolution output pointer while writing to it | Benjamin Franzke | 1 | -2/+2 | |
Instead of calculating the index for each step. | |||||
2012-04-26 | harris: Fix convolution clamping | Benjamin Franzke | 1 | -8/+9 | |
2012-04-26 | harris: Use M_1_PI for 1/pi | Benjamin Franzke | 1 | -1/+2 | |
2012-04-26 | Add harris detector | Benjamin Franzke | 2 | -1/+235 | |
2012-04-20 | hst: Use the middle of a cell for visualization | Benjamin Franzke | 1 | -3/+3 | |
2012-04-20 | hst: Calculate cell position instead of caching | Benjamin Franzke | 1 | -21/+21 | |
Its easy to calculate the index from pointer offset, so we can avoid an initialization loop. | |||||
2012-04-20 | Add hst: Histogramm based SegmenTation | Benjamin Franzke | 2 | -1/+131 | |
2012-04-19 | cvg: Cancel keyboard shortcut if another key is pressed in the meantime | Benjamin Franzke | 1 | -2/+8 | |
2012-04-18 | Rename gauss_cv to cvg | Benjamin Franzke | 3 | -5/+5 | |
2012-04-18 | gauss_cv: Read path to ui-file from argv[0] | Benjamin Franzke | 2 | -3/+10 | |
So that gauss_cv doesnt need to be started from its folder. | |||||
2012-04-18 | Add a simple GTK3 based OpenCV gauß-filter | Benjamin Franzke | 3 | -1/+361 | |
2012-04-17 | Add a very simple vignetting-reduction program | Benjamin Franzke | 2 | -1/+50 | |
Its called unvignette.c. Has no dynamic adjustment yet, and operatoes only in x-direction. | |||||
2012-04-11 | roi: Leave comparision loop early if false | Benjamin Franzke | 1 | -1/+1 | |
2012-04-05 | capture: Queue a redraw when releasing the rubberband | Benjamin Franzke | 1 | -0/+1 | |
2012-04-05 | capture: Add keybindings to stop/continue capturing | Benjamin Franzke | 1 | -50/+68 | |
2012-04-05 | capture: Overload perror to hide some OpenCV error messages | Benjamin Franzke | 1 | -0/+12 | |
2012-04-05 | capture: Add code that could flip vertical | Benjamin Franzke | 1 | -0/+4 | |
2012-04-05 | capture: Allow specifying an index | Benjamin Franzke | 1 | -1/+5 | |
2012-04-05 | capture: Add code for scaling | Benjamin Franzke | 1 | -0/+12 | |
But not yet used. | |||||
2012-04-05 | capture: Use cvQueryFrame | Benjamin Franzke | 1 | -18/+7 | |
The splitted cvGrabFrame + cvRetrieveFrame doesnt work as documented anyway. cvGrabFrame _should_ be fast, but does select(2) with a timeout of 2 seconds on the v4l fd. | |||||
2012-04-04 | capture: Quit in q press event, not release | Benjamin Franzke | 1 | -2/+2 | |
2012-04-04 | capture: Remove unneded timer variable | Benjamin Franzke | 1 | -1/+0 | |
2012-04-04 | Makefile: Be silent by default | Benjamin Franzke | 1 | -2/+13 | |
Like automake silent build rules. | |||||
2012-04-04 | Makefile: Use variables instead of many-rules for cflags/ldflags | Benjamin Franzke | 1 | -23/+25 | |
2012-04-04 | Makefile: Use -Wl,--as-needed | Benjamin Franzke | 1 | -7/+7 | |
2012-04-04 | Add capture.c: OpenCV capture displayed with GTK+3 | Benjamin Franzke | 2 | -3/+260 | |
2012-03-31 | roi: Let marked_image always point to a valid pixbuf | Benjamin Franzke | 1 | -11/+7 | |
Either by having an own backing storage or by being a reference to the input image. | |||||
2012-03-31 | roi: Rename input to image | Benjamin Franzke | 1 | -18/+18 | |
And modified_input to marked_image | |||||
2012-03-31 | roi: No need to have a cairo_rectangle_t in do_roi | Benjamin Franzke | 1 | -5/+4 | |
2012-03-31 | roi: Split do_roi into interval creation and matching | Benjamin Franzke | 1 | -43/+53 | |
2012-03-31 | roi: Add a generic pixbuf_get call | Benjamin Franzke | 1 | -18/+18 | |
All those gdk_pixbuf_getters suck | |||||
2012-03-31 | roi: Dont try to unref modification if nothing is modified | Benjamin Franzke | 1 | -3/+5 | |
2012-03-31 | roi: Use GDK_KEY_<keyname> constants | Benjamin Franzke | 1 | -2/+4 | |
2012-03-31 | roi: Further key mask cleanup | Benjamin Franzke | 1 | -7/+4 | |
2012-03-31 | roi: Cleanup types and line-break usages | Benjamin Franzke | 1 | -11/+5 | |