Skip to content

Commit

Permalink
Release v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jasmcaus committed Oct 3, 2021
1 parent 0b34c58 commit 71eed49
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 31 deletions.
21 changes: 0 additions & 21 deletions caer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,11 @@
### [data](data)
Test images and example data.

### [distance](distance)
Distance-computing algorithms

### [exposure](exposure)
Image intensity adjustment, e.g., histogram equalization, etc.

### [features](features)
Feature detection and extraction, e.g., texture analysis corners, etc.

### [filters](filters)
Sharpening, edge finding, rank filters, thresholding, etc.

### [morph](morph)
Morphological operations, e.g., skeletonization.

### [path](path)
OS-specific Path Manipulations

### [preprocessing](preprocessing)
Image preprocessing utilities

### [segmentation](segmentation)
Partitioning an image into multiple regions.

### [utils](utils)
Generic utilities.

### [video](video)
Video processing utilities
6 changes: 3 additions & 3 deletions caer/_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# Copyright 2020-2021, Caer
author = 'Jason Dsouza'
author_email = 'jasmcaus@gmail.com'
version = '1.9.9'
full_version = '1.9.9'
git_version = 'aaf0eafd5df0de00930921a1586ef2dc102ab6fc'
version = '2.0.0'
full_version = '2.0.0'
git_version = '0b34c58770651d755f75e7f3ddf28abc7c525432'
release = True
contributors = ['Jason Dsouza <@jasmcaus>', '', 'Special Thanks to:', '@MalikMAlna', '@lucasace', '@GitHubDragonFly']
homepage = 'https://github.com/jasmcaus/caer'
2 changes: 0 additions & 2 deletions caer/preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ def preprocess_from_dir(DIR,

if not isinstance(IMG_SIZE, tuple) or len(IMG_SIZE) != 2:
raise ValueError('IMG_SIZE must be a tuple of size 2 (width,height)')
else:
raise ValueError('verbose flag must be either 1 (display progress to terminal) or 0 otherwise')

if not isinstance(save_data, bool):
raise ValueError('save_data must be a boolean (True/False)')
Expand Down
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
Colorspace manipulation
data
Standard high-quality test images
filters
Advanced Image Filters
path
OS-specific Path Manipulations
preprocessing
Expand Down Expand Up @@ -45,9 +43,9 @@
import sys
import platform

MAJOR = 1
MINOR = 9
MICRO = 9
MAJOR = 2
MINOR = 0
MICRO = 0
ISRELEASED = True
VERSION = f'{MAJOR}.{MINOR}.{MICRO}'

Expand Down

0 comments on commit 71eed49

Please sign in to comment.