We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversion 01
Indicar de acuerdo a la siguiente<. OP.Basicas -> Conversion01
//nota este codigo esta escrito en Java, no es copiar y pegar, debes adecuarlo public static float [][][] reescalarRango01( float [][][] ent) { float [][][] sal = new float[3][][]; int alto = ent[0].length, ancho =ent[0][0].length; for(int i = 0; i < 3; i++) sal[i] = new float[alto][ancho]; for(int i = 0; i < alto; i++) for(int j = 0; j < ancho; j++) { sal[R][i][j] = ent[R][i][j]/255; sal[G][i][j] = ent[G][i][j]/255; sal[B][i][j] = ent[B][i][j]/255; } return sal; }
The text was updated successfully, but these errors were encountered:
hilda-24
Successfully merging a pull request may close this issue.
Nombre de la nueva característica
Conversion 01
Menu donde debe aparecer
Indicar de acuerdo a la siguiente<.
OP.Basicas -> Conversion01
Material guia para su implementación
The text was updated successfully, but these errors were encountered: