Skip to content

Commit

Permalink
feat: add variance to index
Browse files Browse the repository at this point in the history
  • Loading branch information
EscapedGibbon committed Jun 7, 2024
1 parent e4769ae commit 86d1988
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/Image.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ import { Mask } from './Mask';
import { add, subtract, SubtractImageOptions } from './compare';
import { divide, DivideOptions } from './compare/divide';
import { multiply, MultiplyOptions } from './compare/multiply';
import { MedianOptions, MeanOptions, median } from './compute';
import { VarianceOptions, variance } from './compute/variance';
import {
MedianOptions,
MeanOptions,
median,
VarianceOptions,
variance,
} from './compute';
import { correctColor } from './correctColor';
import {
drawCircleOnImage,
Expand Down
1 change: 1 addition & 0 deletions src/compute/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ export * from './mean';
export * from './histogram';
export * from './median';
export * from './getExtrema';
export * from './variance';

0 comments on commit 86d1988

Please sign in to comment.