Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update StartupMacros.fiji.ijm #268

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update StartupMacros.fiji.ijm
Hello,
I suggest adding the following to the StartupMacros: 

macro "Auto Brightness/Contrast [F12]" {
	if (nImages>0) {
	run("Enhance Contrast", "saturated=0.35");
	}
}

This will allow to adjust the Brightness and Contrast with a shortcut.

Thank you
  • Loading branch information
LPUoO authored Sep 28, 2020
commit ec1a6c7b8587e78d8c11f210a5104c5f3adfa4e6
6 changes: 6 additions & 0 deletions macros/StartupMacros.fiji.ijm
Original file line number Diff line number Diff line change
Expand Up @@ -267,3 +267,9 @@ macro "Save Inverted FITS" {
run("FITS...", "");
run("Flip Vertically");
}

macro "Auto Brightness/Contrast [F12]" {
if (nImages>0) {
run("Enhance Contrast", "saturated=0.35");
}
}