This file contains 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 PySide2.QtWidgets import * | |
from PySide2.QtCore import * | |
from PySide2.QtGui import * | |
import sys | |
class RangeSlider(QWidget): | |
def __init__(self, parent=None): | |
super().__init__(parent) |
This file contains 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
/** | |
* Changes the coordinate system of the transformation matrix from regular image | |
* coords (opencv-like) to a different coords system like this: | |
* | |
* .-------> x ^ y | |
* | V | | |
* | ---> | | |
* | | | |
* v y .-------> x | |
* |
This file contains 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 argparse | |
import logging | |
from pylint.lint import Run | |
logging.getLogger().setLevel(logging.INFO) | |
parser = argparse.ArgumentParser(prog="LINT") | |
parser.add_argument('-p', |