Posts by Lucas Santos • 1 point
2 posts
-
0
votes2
answers139
viewsA: How to open a list of images with Opencv?
item import cv2 from os import listdir, path imagem = cv2.imread("lampada.png") cv2.imshow("Original", imagem) print "Altura (height): %d pixels" % (imagem.shape[0]) print "Largura (width): %d…
-
-4
votes2
answers128
viewsA: Rules and Exceptions in htaccess
Example: <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_Host} ^(www.)?example.com$ RewriteCond %{REQUEST_URI} !^/my_subdir/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond…