This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# OpenVAS installation from sources for Debian 12 systems. | |
# Documentation: https://greenbone.github.io/docs/latest/ | |
# Check if the script is running as root. | |
if [ "$EUID" -ne 0 ] | |
then echo "Please run this script as root." | |
exit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure("2") do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# OpenVAS installation from sources for Debian 12 systems. | |
# Documentation: https://greenbone.github.io/docs/latest/ | |
# Check if the script is running as root. | |
if [ "$EUID" -ne 0 ] | |
then echo "Please run this script as root." | |
exit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Define Bibliotecas | |
#include <Servo.h> | |
#include <math.h> | |
//Define botôes (placas de pressão) | |
#define entrada A5 | |
#define saida A4 | |
#define vaga1 A3 | |
#define vaga2 A2 | |
#define vaga3 A1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Servo.h> | |
#define pot A5 | |
#define passa 6 | |
#define volta 7 | |
#define ligado 2 | |
#define red 9 | |
#define green 11 | |
#define blue 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define red 10 | |
#define green 8 | |
#define blue 9 | |
int leds[] = {red,green,blue}; | |
int botoes[] = {7,6,5}; | |
int intensidade[] = {0,0,0}; | |
bool inverter[] = {false,false,false}; | |
void setup(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
imagens = ["images/mancha1mod.jpg","images/mancha2mod.jpg","images/mancha3mod.jpg"] | |
for imagem in imagens: | |
imagemOriginal = cv2.imread(imagem) | |
cv2.imshow("Imagem Original", imagemOriginal) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
#Pré-Processamento | |
#----------------------------------//----------------------------------//----------------------------------// | |
imagemOriginal = cv2.imread("images/vitiligo.png") | |
cv2.imshow("Imagem Original", imagemOriginal) | |
cv2.waitKey() | |
cv2.destroyAllWindows() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
imagens = ["images/mancha1mod.jpg","images/mancha2mod.jpg","images/mancha3mod.jpg"] | |
for imagem in imagens: | |
imagemOriginal = cv2.imread(imagem) | |
cv2.imshow("Imagem Original", imagemOriginal) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9.9695 11.6944 | |
5.7056 10.9408 | |
5.092 10.628 | |
8.3116 10.6948 | |
8.6877 11.1212 | |
7.6103 11.7018 | |
6.034 10.3767 | |
9.6094 11.2766 | |
5.193 10.9176 | |
9.3411 11.092 |
NewerOlder