-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from tsipkens/developer
Add draft JOSS paper
- Loading branch information
Showing
24 changed files
with
1,023 additions
and
66 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// VERSION 6.1S | ||
// AUTHOR: Timothy Sipkens, 2023-04-17 | ||
{ | ||
"version": "6.1s3", | ||
"lvl3": "1:0.002:1.35", // range of thresholds to build curve | ||
"lvl5": 0.1, // where to threshold on hist curve | ||
"lvlfun": "lin", // type of adjusted threshold | ||
"morphsc": 0.5, // Modify morph. parameter for rolling ball | ||
"minsize": 20 // minimum particle size to consider | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// VERSION 6.1S | ||
// AUTHOR: Timothy Sipkens, 2023-04-17 | ||
{ | ||
"version": "6.1s4", | ||
"lvl3": "1:0.002:1.35", // range of thresholds to build curve | ||
"lvl5": 0.1, // where to threshold on hist curve | ||
"lvlfun": "lin", // type of adjusted threshold | ||
"morphsc": 0.8, // Modify morph. parameter for rolling ball | ||
"minsize": 20 // minimum particle size to consider | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
|
||
% INSHOW_BINARY Plot original image with binary mask overlayed | ||
% Author: Timothy Sipkens, 2019-07-24 | ||
%=========================================================================% | ||
|
||
function [h,f,i0] = imshow_binary2(imgs, imgs_binary, varargin) | ||
|
||
%-- Parse inputs ---------------------------------------------------------% | ||
% Convert images to cells, if they are not already. | ||
if ~iscell(imgs); imgs = {imgs}; end | ||
if ~iscell(imgs_binary); imgs_binary = {imgs_binary}; end | ||
|
||
if length(imgs)>24 % only plot up to 24 images | ||
imgs = imgs(1:24); | ||
imgs_binary = imgs_binary(1:24); | ||
end | ||
n_imgs = length(imgs); % number of images | ||
%-------------------------------------------------------------------------% | ||
|
||
|
||
|
||
% If more than one image, prepare to tile and maximize figure. | ||
if n_imgs>1 | ||
N1 = floor(sqrt(n_imgs)); | ||
N2 = ceil(n_imgs/N1); | ||
subplot(N1, N2, 1); | ||
end | ||
|
||
|
||
for ii=1:n_imgs % loop over images | ||
|
||
if n_imgs>1 | ||
subplot(N1, N2, ii); | ||
title(num2str(ii)); | ||
end | ||
|
||
[~, i1] = tools.imshow_binary(imgs{ii}, imgs_binary{ii}, varargin{:}); | ||
|
||
if ii==1 | ||
if nargout>0; h = gca; end % organize outputs | ||
i0 = i1; % store first figure panel for output | ||
end | ||
|
||
end | ||
|
||
if nargout>1; f = gcf; end | ||
|
||
end | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
on: [push] | ||
|
||
jobs: | ||
paper: | ||
runs-on: ubuntu-latest | ||
name: Paper Draft | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Build draft PDF | ||
uses: openjournals/openjournals-draft-action@master | ||
with: | ||
journal: joss | ||
paper-path: docs/paper/paper.md | ||
- name: Upload | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: paper | ||
path: docs/paper/paper.pdf |
This file contains 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
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.