diff --git a/slides/figures/00_template-vector-images/Makefile b/slides/figures/00_template-vector-images/Makefile new file mode 100644 index 0000000..3bf30e5 --- /dev/null +++ b/slides/figures/00_template-vector-images/Makefile @@ -0,0 +1,55 @@ + +OS_VERSION:=$(shell lsb_release -a 2>/dev/null | grep Description | awk '{ print $$2 "-" $$3 }') +$(eval $(shell grep VERSION_ID /etc/os-release)) +#ifeq ($(VERSION_ID), 22.04) +ifeq ($(OS_VERSION), Ubuntu-22.04.1) +EXPORT_ID = --export-png +else +EXPORT_ID = --export-filename +endif +# https://stackoverflow.com/questions/714100/os-detecting-makefile + +INKSCAPE?=inkscape --export-dpi=200 $(EXPORT_ID) + + +#dPDFSETTINGS=screen #lower quality, smaller size. (72 dpi) +#dPDFSETTINGS=ebook #for better quality, but slightly larger pdfs. (150 dpi) +#dPDFSETTINGS=prepress #output similar to Acrobat Distiller "Prepress Optimized" setting (300 dpi) +#dPDFSETTINGS=printer #selects output similar to the Acrobat Distiller "Print Optimized" setting (300 dpi) +dPDFSETTINGS=default #selects output intended to be useful across a wide variety of uses, possibly at the expense of a larger output file + +GS?=gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/$(dPDFSETTINGS) -dNOPAUSE -dQUIET -dBATCH -sOutputFile= + +FIGURES_SVG=$(wildcard vectors/*.svg) +FIGURES_PNG=$(subst vectors/,outputs/,$(FIGURES_SVG:.svg=.png)) +FIGURES_PDF=$(subst vectors/,outputs/,$(FIGURES_SVG:.svg=.pdf)) +FIGURES_PDF_REDUCED_SIZE=$(subst vectors/,outputs/,$(FIGURES_SVG:.svg=_reduced_size.pdf)) + +# Pattern rule for converting SVG to PNG and PDF +png: $(FIGURES_PNG) +outputs/%.png: vectors/%.svg + $(INKSCAPE) $(@) $(<) + +pdf: $(FIGURES_PDF) +outputs/%.pdf: vectors/%.svg + $(INKSCAPE) $(@) $(<) + +edit: + inkscape $(FIGURES_SVG) + +view-png: + eog $(FIGURES_PNG) + +view-pdf: + evince $(FIGURES_PDF) + +reduce-pdf-size: + $(GS)$(FIGURES_PDF_REDUCED_SIZE) $(FIGURES_PDF) + +clean: ## output figure files + rm -f $(FIGURES_PNG) $(FIGURES_PDF) outputs/*.pdf + +test: + echo $(VERSION_ID) + echo $(OS_VERSION) + echo $(EXPORT_ID) diff --git a/slides/figures/00_template-vector-images/README.md b/slides/figures/00_template-vector-images/README.md new file mode 100644 index 0000000..ef96ca2 --- /dev/null +++ b/slides/figures/00_template-vector-images/README.md @@ -0,0 +1,44 @@ +# Vector figures + +## Notes + +## Usage +``` +make png +make pdf +make view-png #eog *.png +make view-pdf #evince *.pdf +make reduce-pdf-size dPDFSETTING=book # screen, ebook, prepress, printer and default +make edit # inkscape vector/drawing-v$NN.svg +make clean +``` + +## tree file and file size +``` +tree -s +[ 4096] . +├── [ 1771] Makefile +├── [ 4096] outputs +│   ├── [ 8378] drawing-v00.pdf +│   ├── [ 30203] drawing-v00.png +│   ├── [ 9015] drawing-v00_reduced_size.pdf +│   └── [ 70] README.md +├── [ 508] README.md +├── [ 4096] references +│   └── [ 15] README.md +└── [ 4096] vectors + └── [ 6982] drawing-v00.svg + +3 directories, 8 files + +``` + +## Download template +Open a terminal and type: +``` +cd ~/Desktop &&svn checkout https://github.com/mxochicale/figures/trunk/00_template-vector-images +cd 00_template-vector-images && rm -rf .svn +``` + +# References +https://stackoverflow.com/questions/7106012/download-a-single-folder-or-directory-from-a-github-repo diff --git a/slides/figures/00_template-vector-images/outputs/README.md b/slides/figures/00_template-vector-images/outputs/README.md new file mode 100644 index 0000000..ca7b64d --- /dev/null +++ b/slides/figures/00_template-vector-images/outputs/README.md @@ -0,0 +1,6 @@ +# Versions +## v01 +![v](drawing-v01.png) + +## v00 +![v](drawing-v00.png) diff --git a/slides/figures/00_template-vector-images/outputs/drawing-v00.png b/slides/figures/00_template-vector-images/outputs/drawing-v00.png new file mode 100644 index 0000000..11b622b Binary files /dev/null and b/slides/figures/00_template-vector-images/outputs/drawing-v00.png differ diff --git a/slides/figures/00_template-vector-images/references/README.md b/slides/figures/00_template-vector-images/references/README.md new file mode 100644 index 0000000..a572f91 --- /dev/null +++ b/slides/figures/00_template-vector-images/references/README.md @@ -0,0 +1,3 @@ +# References + + diff --git a/slides/figures/00_template-vector-images/vectors/drawing-v00.svg b/slides/figures/00_template-vector-images/vectors/drawing-v00.svg new file mode 100644 index 0000000..14c5310 --- /dev/null +++ b/slides/figures/00_template-vector-images/vectors/drawing-v00.svg @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + De + v00 + + A + B + Description for Routine Mode + + diff --git a/slides/figures/automatic-deployment-with-gh-actions/Makefile b/slides/figures/automatic-deployment-with-gh-actions/Makefile new file mode 100644 index 0000000..3bf30e5 --- /dev/null +++ b/slides/figures/automatic-deployment-with-gh-actions/Makefile @@ -0,0 +1,55 @@ + +OS_VERSION:=$(shell lsb_release -a 2>/dev/null | grep Description | awk '{ print $$2 "-" $$3 }') +$(eval $(shell grep VERSION_ID /etc/os-release)) +#ifeq ($(VERSION_ID), 22.04) +ifeq ($(OS_VERSION), Ubuntu-22.04.1) +EXPORT_ID = --export-png +else +EXPORT_ID = --export-filename +endif +# https://stackoverflow.com/questions/714100/os-detecting-makefile + +INKSCAPE?=inkscape --export-dpi=200 $(EXPORT_ID) + + +#dPDFSETTINGS=screen #lower quality, smaller size. (72 dpi) +#dPDFSETTINGS=ebook #for better quality, but slightly larger pdfs. (150 dpi) +#dPDFSETTINGS=prepress #output similar to Acrobat Distiller "Prepress Optimized" setting (300 dpi) +#dPDFSETTINGS=printer #selects output similar to the Acrobat Distiller "Print Optimized" setting (300 dpi) +dPDFSETTINGS=default #selects output intended to be useful across a wide variety of uses, possibly at the expense of a larger output file + +GS?=gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/$(dPDFSETTINGS) -dNOPAUSE -dQUIET -dBATCH -sOutputFile= + +FIGURES_SVG=$(wildcard vectors/*.svg) +FIGURES_PNG=$(subst vectors/,outputs/,$(FIGURES_SVG:.svg=.png)) +FIGURES_PDF=$(subst vectors/,outputs/,$(FIGURES_SVG:.svg=.pdf)) +FIGURES_PDF_REDUCED_SIZE=$(subst vectors/,outputs/,$(FIGURES_SVG:.svg=_reduced_size.pdf)) + +# Pattern rule for converting SVG to PNG and PDF +png: $(FIGURES_PNG) +outputs/%.png: vectors/%.svg + $(INKSCAPE) $(@) $(<) + +pdf: $(FIGURES_PDF) +outputs/%.pdf: vectors/%.svg + $(INKSCAPE) $(@) $(<) + +edit: + inkscape $(FIGURES_SVG) + +view-png: + eog $(FIGURES_PNG) + +view-pdf: + evince $(FIGURES_PDF) + +reduce-pdf-size: + $(GS)$(FIGURES_PDF_REDUCED_SIZE) $(FIGURES_PDF) + +clean: ## output figure files + rm -f $(FIGURES_PNG) $(FIGURES_PDF) outputs/*.pdf + +test: + echo $(VERSION_ID) + echo $(OS_VERSION) + echo $(EXPORT_ID) diff --git a/slides/figures/automatic-deployment-with-gh-actions/README.md b/slides/figures/automatic-deployment-with-gh-actions/README.md new file mode 100644 index 0000000..ef96ca2 --- /dev/null +++ b/slides/figures/automatic-deployment-with-gh-actions/README.md @@ -0,0 +1,44 @@ +# Vector figures + +## Notes + +## Usage +``` +make png +make pdf +make view-png #eog *.png +make view-pdf #evince *.pdf +make reduce-pdf-size dPDFSETTING=book # screen, ebook, prepress, printer and default +make edit # inkscape vector/drawing-v$NN.svg +make clean +``` + +## tree file and file size +``` +tree -s +[ 4096] . +├── [ 1771] Makefile +├── [ 4096] outputs +│   ├── [ 8378] drawing-v00.pdf +│   ├── [ 30203] drawing-v00.png +│   ├── [ 9015] drawing-v00_reduced_size.pdf +│   └── [ 70] README.md +├── [ 508] README.md +├── [ 4096] references +│   └── [ 15] README.md +└── [ 4096] vectors + └── [ 6982] drawing-v00.svg + +3 directories, 8 files + +``` + +## Download template +Open a terminal and type: +``` +cd ~/Desktop &&svn checkout https://github.com/mxochicale/figures/trunk/00_template-vector-images +cd 00_template-vector-images && rm -rf .svn +``` + +# References +https://stackoverflow.com/questions/7106012/download-a-single-folder-or-directory-from-a-github-repo diff --git a/slides/figures/automatic-deployment-with-gh-actions/outputs/README.md b/slides/figures/automatic-deployment-with-gh-actions/outputs/README.md new file mode 100644 index 0000000..ca7b64d --- /dev/null +++ b/slides/figures/automatic-deployment-with-gh-actions/outputs/README.md @@ -0,0 +1,6 @@ +# Versions +## v01 +![v](drawing-v01.png) + +## v00 +![v](drawing-v00.png) diff --git a/slides/figures/automatic-deployment-with-gh-actions/outputs/drawing-v00.png b/slides/figures/automatic-deployment-with-gh-actions/outputs/drawing-v00.png new file mode 100644 index 0000000..9b1b8ad Binary files /dev/null and b/slides/figures/automatic-deployment-with-gh-actions/outputs/drawing-v00.png differ diff --git a/slides/figures/automatic-deployment-with-gh-actions/references/README.md b/slides/figures/automatic-deployment-with-gh-actions/references/README.md new file mode 100644 index 0000000..a572f91 --- /dev/null +++ b/slides/figures/automatic-deployment-with-gh-actions/references/README.md @@ -0,0 +1,3 @@ +# References + + diff --git a/slides/figures/automatic-deployment-with-gh-actions/references/github-action.jpg b/slides/figures/automatic-deployment-with-gh-actions/references/github-action.jpg new file mode 100644 index 0000000..a6dd0f3 Binary files /dev/null and b/slides/figures/automatic-deployment-with-gh-actions/references/github-action.jpg differ diff --git a/slides/figures/automatic-deployment-with-gh-actions/vectors/drawing-v00.svg b/slides/figures/automatic-deployment-with-gh-actions/vectors/drawing-v00.svg new file mode 100644 index 0000000..a68c6bc --- /dev/null +++ b/slides/figures/automatic-deployment-with-gh-actions/vectors/drawing-v00.svg @@ -0,0 +1,1043 @@ + +image/svg+xmlDev00ABDescription for Routine Mode diff --git a/slides/figures/model-comparison/Makefile b/slides/figures/model-comparison/Makefile new file mode 100644 index 0000000..3bf30e5 --- /dev/null +++ b/slides/figures/model-comparison/Makefile @@ -0,0 +1,55 @@ + +OS_VERSION:=$(shell lsb_release -a 2>/dev/null | grep Description | awk '{ print $$2 "-" $$3 }') +$(eval $(shell grep VERSION_ID /etc/os-release)) +#ifeq ($(VERSION_ID), 22.04) +ifeq ($(OS_VERSION), Ubuntu-22.04.1) +EXPORT_ID = --export-png +else +EXPORT_ID = --export-filename +endif +# https://stackoverflow.com/questions/714100/os-detecting-makefile + +INKSCAPE?=inkscape --export-dpi=200 $(EXPORT_ID) + + +#dPDFSETTINGS=screen #lower quality, smaller size. (72 dpi) +#dPDFSETTINGS=ebook #for better quality, but slightly larger pdfs. (150 dpi) +#dPDFSETTINGS=prepress #output similar to Acrobat Distiller "Prepress Optimized" setting (300 dpi) +#dPDFSETTINGS=printer #selects output similar to the Acrobat Distiller "Print Optimized" setting (300 dpi) +dPDFSETTINGS=default #selects output intended to be useful across a wide variety of uses, possibly at the expense of a larger output file + +GS?=gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/$(dPDFSETTINGS) -dNOPAUSE -dQUIET -dBATCH -sOutputFile= + +FIGURES_SVG=$(wildcard vectors/*.svg) +FIGURES_PNG=$(subst vectors/,outputs/,$(FIGURES_SVG:.svg=.png)) +FIGURES_PDF=$(subst vectors/,outputs/,$(FIGURES_SVG:.svg=.pdf)) +FIGURES_PDF_REDUCED_SIZE=$(subst vectors/,outputs/,$(FIGURES_SVG:.svg=_reduced_size.pdf)) + +# Pattern rule for converting SVG to PNG and PDF +png: $(FIGURES_PNG) +outputs/%.png: vectors/%.svg + $(INKSCAPE) $(@) $(<) + +pdf: $(FIGURES_PDF) +outputs/%.pdf: vectors/%.svg + $(INKSCAPE) $(@) $(<) + +edit: + inkscape $(FIGURES_SVG) + +view-png: + eog $(FIGURES_PNG) + +view-pdf: + evince $(FIGURES_PDF) + +reduce-pdf-size: + $(GS)$(FIGURES_PDF_REDUCED_SIZE) $(FIGURES_PDF) + +clean: ## output figure files + rm -f $(FIGURES_PNG) $(FIGURES_PDF) outputs/*.pdf + +test: + echo $(VERSION_ID) + echo $(OS_VERSION) + echo $(EXPORT_ID) diff --git a/slides/figures/model-comparison/README.md b/slides/figures/model-comparison/README.md new file mode 100644 index 0000000..ef96ca2 --- /dev/null +++ b/slides/figures/model-comparison/README.md @@ -0,0 +1,44 @@ +# Vector figures + +## Notes + +## Usage +``` +make png +make pdf +make view-png #eog *.png +make view-pdf #evince *.pdf +make reduce-pdf-size dPDFSETTING=book # screen, ebook, prepress, printer and default +make edit # inkscape vector/drawing-v$NN.svg +make clean +``` + +## tree file and file size +``` +tree -s +[ 4096] . +├── [ 1771] Makefile +├── [ 4096] outputs +│   ├── [ 8378] drawing-v00.pdf +│   ├── [ 30203] drawing-v00.png +│   ├── [ 9015] drawing-v00_reduced_size.pdf +│   └── [ 70] README.md +├── [ 508] README.md +├── [ 4096] references +│   └── [ 15] README.md +└── [ 4096] vectors + └── [ 6982] drawing-v00.svg + +3 directories, 8 files + +``` + +## Download template +Open a terminal and type: +``` +cd ~/Desktop &&svn checkout https://github.com/mxochicale/figures/trunk/00_template-vector-images +cd 00_template-vector-images && rm -rf .svn +``` + +# References +https://stackoverflow.com/questions/7106012/download-a-single-folder-or-directory-from-a-github-repo diff --git a/slides/figures/model-comparison/outputs/README.md b/slides/figures/model-comparison/outputs/README.md new file mode 100644 index 0000000..ca7b64d --- /dev/null +++ b/slides/figures/model-comparison/outputs/README.md @@ -0,0 +1,6 @@ +# Versions +## v01 +![v](drawing-v01.png) + +## v00 +![v](drawing-v00.png) diff --git a/slides/figures/model-comparison/outputs/drawing-v00.png b/slides/figures/model-comparison/outputs/drawing-v00.png new file mode 100644 index 0000000..1c8aa35 Binary files /dev/null and b/slides/figures/model-comparison/outputs/drawing-v00.png differ diff --git a/slides/figures/model-comparison/references/README.md b/slides/figures/model-comparison/references/README.md new file mode 100644 index 0000000..a572f91 --- /dev/null +++ b/slides/figures/model-comparison/references/README.md @@ -0,0 +1,3 @@ +# References + + diff --git a/slides/figures/model-comparison/vectors/drawing-v00.svg b/slides/figures/model-comparison/vectors/drawing-v00.svg new file mode 100644 index 0000000..9411127 --- /dev/null +++ b/slides/figures/model-comparison/vectors/drawing-v00.svg @@ -0,0 +1,4125 @@ + +image/svg+xmlDev00ADescription for Routine ModeColonSegNetDataAugmentation diff --git a/slides/figures/model-deployment/Makefile b/slides/figures/model-deployment/Makefile new file mode 100644 index 0000000..3bf30e5 --- /dev/null +++ b/slides/figures/model-deployment/Makefile @@ -0,0 +1,55 @@ + +OS_VERSION:=$(shell lsb_release -a 2>/dev/null | grep Description | awk '{ print $$2 "-" $$3 }') +$(eval $(shell grep VERSION_ID /etc/os-release)) +#ifeq ($(VERSION_ID), 22.04) +ifeq ($(OS_VERSION), Ubuntu-22.04.1) +EXPORT_ID = --export-png +else +EXPORT_ID = --export-filename +endif +# https://stackoverflow.com/questions/714100/os-detecting-makefile + +INKSCAPE?=inkscape --export-dpi=200 $(EXPORT_ID) + + +#dPDFSETTINGS=screen #lower quality, smaller size. (72 dpi) +#dPDFSETTINGS=ebook #for better quality, but slightly larger pdfs. (150 dpi) +#dPDFSETTINGS=prepress #output similar to Acrobat Distiller "Prepress Optimized" setting (300 dpi) +#dPDFSETTINGS=printer #selects output similar to the Acrobat Distiller "Print Optimized" setting (300 dpi) +dPDFSETTINGS=default #selects output intended to be useful across a wide variety of uses, possibly at the expense of a larger output file + +GS?=gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/$(dPDFSETTINGS) -dNOPAUSE -dQUIET -dBATCH -sOutputFile= + +FIGURES_SVG=$(wildcard vectors/*.svg) +FIGURES_PNG=$(subst vectors/,outputs/,$(FIGURES_SVG:.svg=.png)) +FIGURES_PDF=$(subst vectors/,outputs/,$(FIGURES_SVG:.svg=.pdf)) +FIGURES_PDF_REDUCED_SIZE=$(subst vectors/,outputs/,$(FIGURES_SVG:.svg=_reduced_size.pdf)) + +# Pattern rule for converting SVG to PNG and PDF +png: $(FIGURES_PNG) +outputs/%.png: vectors/%.svg + $(INKSCAPE) $(@) $(<) + +pdf: $(FIGURES_PDF) +outputs/%.pdf: vectors/%.svg + $(INKSCAPE) $(@) $(<) + +edit: + inkscape $(FIGURES_SVG) + +view-png: + eog $(FIGURES_PNG) + +view-pdf: + evince $(FIGURES_PDF) + +reduce-pdf-size: + $(GS)$(FIGURES_PDF_REDUCED_SIZE) $(FIGURES_PDF) + +clean: ## output figure files + rm -f $(FIGURES_PNG) $(FIGURES_PDF) outputs/*.pdf + +test: + echo $(VERSION_ID) + echo $(OS_VERSION) + echo $(EXPORT_ID) diff --git a/slides/figures/model-deployment/README.md b/slides/figures/model-deployment/README.md new file mode 100644 index 0000000..ef96ca2 --- /dev/null +++ b/slides/figures/model-deployment/README.md @@ -0,0 +1,44 @@ +# Vector figures + +## Notes + +## Usage +``` +make png +make pdf +make view-png #eog *.png +make view-pdf #evince *.pdf +make reduce-pdf-size dPDFSETTING=book # screen, ebook, prepress, printer and default +make edit # inkscape vector/drawing-v$NN.svg +make clean +``` + +## tree file and file size +``` +tree -s +[ 4096] . +├── [ 1771] Makefile +├── [ 4096] outputs +│   ├── [ 8378] drawing-v00.pdf +│   ├── [ 30203] drawing-v00.png +│   ├── [ 9015] drawing-v00_reduced_size.pdf +│   └── [ 70] README.md +├── [ 508] README.md +├── [ 4096] references +│   └── [ 15] README.md +└── [ 4096] vectors + └── [ 6982] drawing-v00.svg + +3 directories, 8 files + +``` + +## Download template +Open a terminal and type: +``` +cd ~/Desktop &&svn checkout https://github.com/mxochicale/figures/trunk/00_template-vector-images +cd 00_template-vector-images && rm -rf .svn +``` + +# References +https://stackoverflow.com/questions/7106012/download-a-single-folder-or-directory-from-a-github-repo diff --git a/slides/figures/model-deployment/outputs/README.md b/slides/figures/model-deployment/outputs/README.md new file mode 100644 index 0000000..ca7b64d --- /dev/null +++ b/slides/figures/model-deployment/outputs/README.md @@ -0,0 +1,6 @@ +# Versions +## v01 +![v](drawing-v01.png) + +## v00 +![v](drawing-v00.png) diff --git a/slides/figures/model-deployment/outputs/drawing-v00.png b/slides/figures/model-deployment/outputs/drawing-v00.png new file mode 100644 index 0000000..6054b80 Binary files /dev/null and b/slides/figures/model-deployment/outputs/drawing-v00.png differ diff --git a/slides/figures/model-deployment/references/README.md b/slides/figures/model-deployment/references/README.md new file mode 100644 index 0000000..a572f91 --- /dev/null +++ b/slides/figures/model-deployment/references/README.md @@ -0,0 +1,3 @@ +# References + + diff --git a/slides/figures/model-deployment/vectors/drawing-v00.svg b/slides/figures/model-deployment/vectors/drawing-v00.svg new file mode 100644 index 0000000..f91b4c3 --- /dev/null +++ b/slides/figures/model-deployment/vectors/drawing-v00.svg @@ -0,0 +1,755 @@ + +image/svg+xmlDev00BDescription for Routine ModeMainSegmentation application workflow with replay from file diff --git a/slides/figures/real-time-ai-workflow-for-surgery/Makefile b/slides/figures/real-time-ai-workflow-for-surgery/Makefile new file mode 100644 index 0000000..3bf30e5 --- /dev/null +++ b/slides/figures/real-time-ai-workflow-for-surgery/Makefile @@ -0,0 +1,55 @@ + +OS_VERSION:=$(shell lsb_release -a 2>/dev/null | grep Description | awk '{ print $$2 "-" $$3 }') +$(eval $(shell grep VERSION_ID /etc/os-release)) +#ifeq ($(VERSION_ID), 22.04) +ifeq ($(OS_VERSION), Ubuntu-22.04.1) +EXPORT_ID = --export-png +else +EXPORT_ID = --export-filename +endif +# https://stackoverflow.com/questions/714100/os-detecting-makefile + +INKSCAPE?=inkscape --export-dpi=200 $(EXPORT_ID) + + +#dPDFSETTINGS=screen #lower quality, smaller size. (72 dpi) +#dPDFSETTINGS=ebook #for better quality, but slightly larger pdfs. (150 dpi) +#dPDFSETTINGS=prepress #output similar to Acrobat Distiller "Prepress Optimized" setting (300 dpi) +#dPDFSETTINGS=printer #selects output similar to the Acrobat Distiller "Print Optimized" setting (300 dpi) +dPDFSETTINGS=default #selects output intended to be useful across a wide variety of uses, possibly at the expense of a larger output file + +GS?=gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/$(dPDFSETTINGS) -dNOPAUSE -dQUIET -dBATCH -sOutputFile= + +FIGURES_SVG=$(wildcard vectors/*.svg) +FIGURES_PNG=$(subst vectors/,outputs/,$(FIGURES_SVG:.svg=.png)) +FIGURES_PDF=$(subst vectors/,outputs/,$(FIGURES_SVG:.svg=.pdf)) +FIGURES_PDF_REDUCED_SIZE=$(subst vectors/,outputs/,$(FIGURES_SVG:.svg=_reduced_size.pdf)) + +# Pattern rule for converting SVG to PNG and PDF +png: $(FIGURES_PNG) +outputs/%.png: vectors/%.svg + $(INKSCAPE) $(@) $(<) + +pdf: $(FIGURES_PDF) +outputs/%.pdf: vectors/%.svg + $(INKSCAPE) $(@) $(<) + +edit: + inkscape $(FIGURES_SVG) + +view-png: + eog $(FIGURES_PNG) + +view-pdf: + evince $(FIGURES_PDF) + +reduce-pdf-size: + $(GS)$(FIGURES_PDF_REDUCED_SIZE) $(FIGURES_PDF) + +clean: ## output figure files + rm -f $(FIGURES_PNG) $(FIGURES_PDF) outputs/*.pdf + +test: + echo $(VERSION_ID) + echo $(OS_VERSION) + echo $(EXPORT_ID) diff --git a/slides/figures/real-time-ai-workflow-for-surgery/README.md b/slides/figures/real-time-ai-workflow-for-surgery/README.md new file mode 100644 index 0000000..ef96ca2 --- /dev/null +++ b/slides/figures/real-time-ai-workflow-for-surgery/README.md @@ -0,0 +1,44 @@ +# Vector figures + +## Notes + +## Usage +``` +make png +make pdf +make view-png #eog *.png +make view-pdf #evince *.pdf +make reduce-pdf-size dPDFSETTING=book # screen, ebook, prepress, printer and default +make edit # inkscape vector/drawing-v$NN.svg +make clean +``` + +## tree file and file size +``` +tree -s +[ 4096] . +├── [ 1771] Makefile +├── [ 4096] outputs +│   ├── [ 8378] drawing-v00.pdf +│   ├── [ 30203] drawing-v00.png +│   ├── [ 9015] drawing-v00_reduced_size.pdf +│   └── [ 70] README.md +├── [ 508] README.md +├── [ 4096] references +│   └── [ 15] README.md +└── [ 4096] vectors + └── [ 6982] drawing-v00.svg + +3 directories, 8 files + +``` + +## Download template +Open a terminal and type: +``` +cd ~/Desktop &&svn checkout https://github.com/mxochicale/figures/trunk/00_template-vector-images +cd 00_template-vector-images && rm -rf .svn +``` + +# References +https://stackoverflow.com/questions/7106012/download-a-single-folder-or-directory-from-a-github-repo diff --git a/slides/figures/real-time-ai-workflow-for-surgery/outputs/README.md b/slides/figures/real-time-ai-workflow-for-surgery/outputs/README.md new file mode 100644 index 0000000..ca7b64d --- /dev/null +++ b/slides/figures/real-time-ai-workflow-for-surgery/outputs/README.md @@ -0,0 +1,6 @@ +# Versions +## v01 +![v](drawing-v01.png) + +## v00 +![v](drawing-v00.png) diff --git a/slides/figures/real-time-ai-workflow-for-surgery/outputs/drawing-v00.png b/slides/figures/real-time-ai-workflow-for-surgery/outputs/drawing-v00.png new file mode 100644 index 0000000..2a624f3 Binary files /dev/null and b/slides/figures/real-time-ai-workflow-for-surgery/outputs/drawing-v00.png differ diff --git a/slides/figures/real-time-ai-workflow-for-surgery/references/README.md b/slides/figures/real-time-ai-workflow-for-surgery/references/README.md new file mode 100644 index 0000000..a572f91 --- /dev/null +++ b/slides/figures/real-time-ai-workflow-for-surgery/references/README.md @@ -0,0 +1,3 @@ +# References + + diff --git a/slides/figures/real-time-ai-workflow-for-surgery/references/json-onnx.png b/slides/figures/real-time-ai-workflow-for-surgery/references/json-onnx.png new file mode 100644 index 0000000..f856d0e Binary files /dev/null and b/slides/figures/real-time-ai-workflow-for-surgery/references/json-onnx.png differ diff --git a/slides/figures/real-time-ai-workflow-for-surgery/vectors/drawing-v00.svg b/slides/figures/real-time-ai-workflow-for-surgery/vectors/drawing-v00.svg new file mode 100644 index 0000000..04f6fcf --- /dev/null +++ b/slides/figures/real-time-ai-workflow-for-surgery/vectors/drawing-v00.svg @@ -0,0 +1,481 @@ + +image/svg+xmlDev00ADescription for Routine ModeDevelopmentDeploymentEvaluationHacking Real-time AI workflows for Surgeryhttps://github.com/SciKit-Surgery/cmicHACKS2SSH diff --git a/slides/figures/team.png b/slides/figures/team.png index 0d24098..0a2c897 100644 Binary files a/slides/figures/team.png and b/slides/figures/team.png differ diff --git a/slides/work-achieved/index.html b/slides/work-achieved/index.html index 0092f44..43eca10 100644 --- a/slides/work-achieved/index.html +++ b/slides/work-achieved/index.html @@ -280,24 +280,129 @@
-

🏆 Best team name

+

real[good]time

+ + +
+

📊 Model comparision

+ + + + + +
+ + + +
+

🚀 Real-time AI Workflow for Surgery

+ + + + + + + + +
+ + + + + +
+

🔁 Model deployment

+ + + + + + + +
+ + + +
+

🌐 Automatic deployment of GitHub pages

+ + + + + + + +
+ +
-

👪 team

+

🏆 Best team name

- +
+ + + +
+

🙌 Acknowledgements

+ + + +
+ + + +