Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
4a2efbb
feat: expose camera fieldOfView
JamesPerlman Sep 5, 2018
8807fa2
Update gitignore
JamesPerlman Sep 7, 2018
bc7d8ca
add callback for when frame finishes processing
JamesPerlman Sep 7, 2018
b84eaba
Hardcode filter values for hough transform
JamesPerlman Sep 10, 2018
3b27314
Default iOS camera to 1920x1080
JamesPerlman Sep 10, 2018
ade862d
Add forceProcessingAtSize() method
JamesPerlman Sep 10, 2018
487d2ef
gaussian blur filter fixed
JamesPerlman Sep 11, 2018
cc341cf
Clean up gaussian blur filter
JamesPerlman Sep 11, 2018
7752a3a
clean up nonmax suppression filter
JamesPerlman Sep 11, 2018
4a8b747
Cleanup grayscale filter
JamesPerlman Sep 11, 2018
fe5119d
Fixes directional non maximum suppression filter
JamesPerlman Sep 11, 2018
55337b0
Explicitly sets terminal filter
JamesPerlman Sep 11, 2018
4b0e8d7
To match GPUImage (orig)
JamesPerlman Sep 11, 2018
96d4335
unnecessary space
JamesPerlman Sep 11, 2018
5b8aa13
Space out lines
JamesPerlman Sep 11, 2018
280de63
syntax stuff
JamesPerlman Sep 11, 2018
f9d989a
ADD CONTENTSCALE to make the damn camera look good
JamesPerlman Sep 11, 2018
eb5d98a
Prevent function call on null pointer
JamesPerlman Sep 12, 2018
95d17b5
remove unused variable
JamesPerlman Sep 12, 2018
2b6909f
use frame buffers on FilterGroup
JamesPerlman Sep 12, 2018
5dbc04f
fix setFramebuffer method
JamesPerlman Sep 12, 2018
26faf56
Restructure project and remove duplicate files
appden Sep 12, 2018
9f9abc0
Refactor and add Vector3/Vector4
JamesPerlman Sep 17, 2018
6290e7a
fixed include statement for moved header
JamesPerlman Sep 17, 2018
a7ba8e5
Use uint8_t instead of char for captured data
JamesPerlman Sep 18, 2018
f879434
Remove some unnecessary heap allocations
appden Sep 18, 2018
f469d69
Split remaining math classes into their own files
appden Sep 18, 2018
9dfc7de
Modernize Gradle build
appden Sep 18, 2018
45bb653
Fix PLATFORM_UNKNOWN typo
appden Sep 20, 2018
4730bc0
Use GL_RGBA on Android
appden Sep 20, 2018
a7af67b
Use std::min instead of MIN macro
appden Sep 20, 2018
38c13be
Fix some include paths and ordering
appden Sep 20, 2018
e97297d
Add getCameraParameters() method for Android
appden Sep 20, 2018
1b8ff06
Add DEFINE_FILTER_CREATE_METHOD macro
appden Sep 20, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.DS_Store

build/
project.xcworkspace/
xcuserdata/
45 changes: 0 additions & 45 deletions GPUImage-x/proj.android/GPUImage-x/library/.gitignore

This file was deleted.

30 changes: 0 additions & 30 deletions GPUImage-x/proj.android/GPUImage-x/library/build.gradle

This file was deleted.

This file was deleted.

162 changes: 0 additions & 162 deletions GPUImage-x/proj.android/GPUImage-x/library/src/main/cpp/GLProgram.cpp

This file was deleted.

Loading