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
from SimpleCV import * | |
# A quarter mede 24.26mm | |
quarterSize = 24.26 | |
# Isto ira manter o ratio entre o tamanho da imagem ao tamanho real do quartzo | |
sizeRatio = 0 | |
objectSize = 0 | |
img = Image('coins.jpg', sample=True) |
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
from SimpleCV import * #importa FrameWork | |
import time # importa time | |
frame = Image("1.jpg").scale(0.8) # abre imagem e subtrai 20% do seu total | |
face = frame.findHaarFeatures("face.xml") #instancia de face.xml | |
if face: # se encontrar um rosto | |
face.draw((0, 255, 0), 3) #desenha cor (R,G,B) LarguraLinha 3 | |
frame.show() #mostra o resultado | |
time.sleep(10) #segura por 10seg resltado n tela |
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
from PySide.QtGui import QApplication | |
from PySide.QtCore import QUrl | |
from PySide.QtWebKit import QWebView | |
import sys | |
__autor__= 'Rodrigo Gomes' | |
app = QApplication(sys.argv) | |
b = QWebView() | |
b.load(QUrl('https://youtu.be/QXG-Rsmrt4A?list=PLe1Buo9ERpeVkq-3aqxBSeriyV-didkwW')) |
NewerOlder