- Go to forgot password
- Write your email
- Pypi will send you the password reset request along with 'username'
This file contains hidden or 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 cv2 | |
# Using OpenCV | |
def _dct(image): | |
result = cv2.dct(np.float32(image)/255.0) | |
return (result * 255.0) | |
# Using Scipy | |
from scipy.fftpack import dctn | |
dctn(image, norm = "ortho") |