redshiftzero
redshiftzero
Openface is a good solution for this, e.g. https://cmusatyalab.github.io/openface/usage/#api-documentation
Let's use the code added in PR #112 to get this into our workflow. Requires #5.
Initially we'd want to: - Overlay detected face box on images in both image classification and officer identification pages Note that what to do with the face depends on whether...
Once a photo is uploaded, we should submit a face detection task to a worker queue which will do: ``` rekog_client=boto3.client('rekognition') response = client.detect_faces( Image={'S3Object':{'Bucket':current_app.config['S3_BUCKET_NAME'], 'Name':s3_path}},Attributes=['ALL']) ``` The number of...
there's a working prototype in branch `face-detection` (you gotta install redis in the dev env to test it): upon images being submitted, a task is submitted to a worker queue,...
> I wonder if the best way to allow department-specific ranks but not have the disadvantages you listed above, would be to have a per-department list of ranks provided when...
> Is there a particular place in the UI or UI mockup that this should be implemented with? We don't have a UI mockup for this, however the best place...
yeah to echo @dismantl while users do need to be authenticated to make these changes, the auth blueprint is pretty much for account management related stuff (e.g. password resets, account...
> Currently, when a user who doesn't have permissions to view an inactive department navigates to that department's list_officer page, they receive a 403. Meanwhile, the same user will receive...
In staging, prod or in `develop`? It's on `develop` (and thus should be on staging since the deployment is automated): https://github.com/lucyparsons/OpenOversight/blob/cd4dbb75d910d761907718ce7ea4885808392055/OpenOversight/app/models.py#L35 This migration won't be on `master` (and thus production)...