-
Couldn't load subscription status.
- Fork 0
eternalmatt/KnightVisor
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
An edge detecting Android app
todos in this branch.
Migrate majority of logic out of EdgeView and into an
interface EdgeConverter {
public Bitmap convertFrame(byte[] yuv, int height, int width);
}
And EdgeView becomes
class EdgeView extends etc
{
//implement onDraw
//implement onTouch
//implement Camera.PictureCallback
//implement setEdgeConverter
onPreviewFrame{
if (cameraLock.trylock()){
bitmap = edgeConverter.convertFrame
}
}
}
Then there can be
class NativeConverter implements EdgeConverter
class FilterScriptConverter implements EdgeConverter
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published