Posts by Enzo A. • 13 points
3 posts
-
0
votes0
answers56
viewsQ: Apply binarization and skeletonize to a python fingerprint
I’m trying to make a digital recognition program in python, in the skeletonization part, the image gets lines, as below: The original image is this: My code: import cv2 as cv import numpy as np from…
-
0
votes0
answers39
viewsQ: Function in Oracle Sql
How do I perform these if Else in SQL create or replace function inss(x real) return number is begin if x <= 840.55 then return ((7.65/100) * x); else if (x >= 840.56) and (x <= 1050.00)…
-
1
votes1
answer493
viewsQ: Storing questions from a java quiz
I have a quiz game made in java and would like to add in a class the questions that would appear on the screen for the user, I thought to use Arrylist, but it is not working. I tried that: package…