/usr/lib/python2.7/dist-packages/pymecavideo/echelle.py is in python-mecavideo 6.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | # -*- coding: utf-8 -*-
"""
echelle, a module for pymecavideo:
a program to track moving points in a video frameset
Copyright (C) 2007 Jean-Baptiste Butet <ashashiwa@gmail.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
from math import sqrt
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from vecteur import vecteur
from zoom import Zoom_Croix
import os
class echelle(QObject):
def __init__(self, p1=vecteur(0, 0), p2=vecteur(0, 0)):
self.p1, self.p2 = p1, p2
self.longueur_reelle_etalon = 1
def __str__(self):
return "echelle(%s,%s,%s m)" % (self.p1, self.p2, self.longueur_reelle_etalon)
def longueur_pixel_etalon(self):
return (self.p1 - self.p2).norme()
def isUndef(self):
"""
Vrai si l'échelle n'est pas définie, c'est à dire si
p1 et p2 sont confondus.
"""
return (self.p1 - self.p2).norme() == 0
def mParPx(self):
"""renvoie le nombre de mètre par pixel"""
if not self.isUndef():
return self.longueur_reelle_etalon / self.longueur_pixel_etalon()
else :
return 1
def pxParM(self):
"""renvoie le nombre de pixel par mètre"""
if not self.isUndef():
return self.longueur_pixel_etalon() / self.longueur_reelle_etalon
else :
return 1
def applique_echelle(self, pos):
"""
les positions pos sont en pixels, ça renvoie une liste
de positions (vecteurs) en mètre.
"""
result = []
for p in pos:
result.append((vecteur(0, self.app.hauteur) - p) * self.mParPx())
return result
def etalonneReel(self, l):
"""
Définit la longueur en mètre de l'étalon
@param l longueur en mètre
"""
self.longueur_reelle_etalon = float(l)
class Label_Echelle(QLabel):
def __init__(self, parent, app):
QLabel.__init__(self, parent)
self.parent = parent
self.app = app
self.setGeometry(QRect(0, 0, self.app.largeur, self.app.hauteur))
self.setAutoFillBackground(False)
self.p1 = vecteur()
self.p2 = vecteur()
self.cible_icon = os.path.join(self.app._dir("icones"), "curseur_cible.svg")
pix = QPixmap(self.cible_icon).scaledToHeight(32, 32)
self.cursor = QCursor(pix)
self.setCursor(self.cursor)
self.cropX2 = None
self.zoom_croix = Zoom_Croix(self.app.ui.label_zoom, self.app)
self.zoom_croix.hide()
self.setMouseTracking(True)
self.pressed = False
try:
self.app.origine_trace.lower() # origine definition is optionnal but hide scale if defined first
except AttributeError:
pass
try:
self.app.label_echelle_trace.hide()
del self.app.label_echelle_trace
except AttributeError:
pass
def mousePressEvent(self, event):
if event.button() != 1:
self.p1 = vecteur(-1, -1)
self.close()
self.p1 = vecteur(event.x(), event.y())
self.pressed = True
def paintEvent(self, event):
painter = QPainter()
painter.begin(self)
painter.setPen(Qt.red)
if self.p1.x() > 0:
painter.drawLine(self.p1.x(), self.p1.y(), self.p2.x(), self.p2.y())
painter.end()
def mouseMoveEvent(self, event):
self.zoom_croix.show()
if (event.x()>0 and event.x()<self.app.largeur) and (event.y()>0 and event.y()<self.app.hauteur):
self.pos = vecteur(event.x(), event.y())
self.fait_crop(self.pos)
self.app.ui.label_zoom.setPixmap(self.cropX2)
if self.pressed:
self.p2 = vecteur(event.x() + 1, event.y() + 1)
self.update()
def fait_crop(self, p):
rect = QRect(p.x() - 25, p.y() - 25, 50, 50)
crop = self.app.imageAffichee.copy(rect)
self.cropX2 = QPixmap.fromImage(crop.scaled(100, 100, Qt.KeepAspectRatio))
def mouseReleaseEvent(self, event):
if event.button() == 1 and self.p1.x() >= 0:
self.p2 = vecteur(event.x() + 1, event.y() + 1)
self.zoom_croix.hide()
self.app.ui.label_zoom.setPixmap(QPixmap())
#self.app.ui.label_zoom.repaint()
del self.zoom_croix
self.parent.index_du_point = 0
self.app.echelle_image.p1 = self.p1.copy()
self.app.echelle_image.p2 = self.p2.copy()
self.app.p1 = self.p1.copy()
self.app.p2 = self.p2.copy()
epxParM = self.app.echelle_image.pxParM()
self.app.affiche_echelle()
# self.app.affiche_nb_points(True)
self.app.mets_a_jour_label_infos(self.app.tr(u"Choisir le nombre de points puis « Démarrer l'acquisition » "))
#self.app.affiche_lance_capture(False)
self.app.feedbackEchelle(self.p1, self.p2)
if len(self.app.listePoints) > 0: #si on appelle l'échelle après avoir déjà pointé
self.app.mets_a_jour_label_infos(self.app.tr("Vous pouvez continuer votre acquisition"))
self.app.affiche_nb_points(False)
self.app.refait_echelle()
self.app.echelle_faite = True
self.close()
class Label_Echelle_Trace(QLabel):
def __init__(self, parent, p1, p2):
QLabel.__init__(self, parent)
self.parent = parent
self.setGeometry(QRect(0, 0, self.parent.app.largeur, self.parent.app.hauteur))
self.setAutoFillBackground(False)
self.p1 = p1
self.p2 = p2
self.setMouseTracking(True)
def mouseMoveEvent(self, event):
event.ignore()
def mouseReleaseEvent(self, event):
event.ignore()
def maj(self):
print('MAJ', self.width(), self.height())
self.setGeometry(QRect(0, 0, self.app.label_video.width(), self.app.label_video.height()))
def paintEvent(self, event):
painter = QPainter()
painter.begin(self)
painter.setPen(Qt.green)
painter.drawLine(self.p1.x(), self.p1.y(), self.p2.x(), self.p2.y())
painter.end()
|