Skip to content

Standard Imports

Dmitri Soshnikov edited this page Dec 3, 2018 · 1 revision

Standard imports

It is recommended to import mPyPl in the following way:

import mPyPl as mp
from pipe import *
from mPyPl.utils.pipeutils import *

Some additional useful functions can also be imported:

import mPyPl.utils.image as mpui

In most of our samples, we also assume some standard Python libraries are imported like

import sys, os
import cv2
import numpy as np
import matplotlib.pyplot as plt