Source: https://opensource.com/business/16/2/top-6-open-source-crm-tools-2016
EspoCRM `github.com/espocrm/espocrm`_ PHP http://www.espocrm.com
import numpy as np | |
import cv2 | |
import math | |
import torch | |
###### POLYGON INTERPOLATION FUNCTIONS PYTORCH ###### | |
from torchinterp1d import Interp1d | |
def segments_torch(polygon): |
import numpy as np | |
import cv2 | |
import math | |
import torch | |
###### POLYGON INTERPOLATION FUNCTIONS NUMPY ###### | |
def segments(poly): | |
"""A sequence of (x,y) numeric coordinates pairs """ | |
return zip(poly, poly[1:] + [poly[0]]) |
To 'clone' a container, you'll have to make an image of that container first, you can do so by "committing" the container. Docker will (by default) pause all processes running in the container during commit to preserve data-consistency.
For example;
docker commit --message="Snapshot of my container" my_container my_container_snapshot:yymmdd