<style>
div.card {
margin: 5px;
border: 1px solid #000;
float: left;
width: 200px;
height: 350px;
}
div.card:hover {
border: 2px solid #000;
}
div.card img {
width: 100%;
height: auto;
padding: 5px;
}
div.card-title {
padding: 5px;
text-align: left;
}
div.card-title h6 {
margin-bottom: 1px;
}
div.card-tags {
padding: 5px;
font-size: small;
}
div.card-button {
padding: 5px;
width: 125px;
}
div.card-filter-div {
padding-bottom: 50px;
}
</style>
Filter tutorials by tag:
Show all
Single plant RGB image workflow
Tags : plant shoot, single plant, side-view, RGB, shape analysis, color analysis, height analysis
Single plant RGB dual RGB-NIR image workflow
Tags : plant shoot, single plant, side-view, RGB, Near-infrared, shape analysis, NIR analysis
Single plant NIR image workflow
Tags : plant shoot, single plant, side-view, Near-infrared, shape analysis, NIR analysis
Single plant PSII (Fv/Fm) workflow
Tags : plant shoot, single plant, side-view, Chlorophyll fluorescence, Fv/Fm analysis
Tags : plant shoot, multi-plant, top-view, thermal infrared, thermal analysis
Hyperspectral image workflow
Tags : plant shoot, single plant, side-view, hyperspectral, spectral index
Tags : plant leaf, infection, classification, machine learning
Tools for Multi-Plant Analysis
Tags : plant shoot, multi-plant, RGB, shape analysis, brassica
Arabidopsis Multi-Plant Tutorial
Tags : plant shoot, multi-plant, RGB, shape analysis, arabidopsis
Tags : seed, seed analysis, shape analysis, color analysis, seed count, quinoa
Tags : plant shoot, leaf/stem segmentation, leaf angle, leaf length
Sorghum Shape and Morphology Analysis
Tags : plant shoot, single plant, side-view, RGB, shape analysis, leaf angle analysis, stem and branch segmentation, leaf length, leaf curvature, leaf tangent angle, sorghum
Color Correction Tutorial
Tags : color card, color correction
Tags : open image, save image, save plot
Tags : plant shoot, single plant, side-view, RGB, threshold methods
Tools for Thresholding Plant Data
Tags : plant shoot, single plant, side-view, RGB, threshold methods, binary mask
Region of Interest Tutorial
Tags : region of interest, ROI
Watershed Segmentation Tutorial
Tags : plant shoot, single plant, top-view, RGB, watershed segmentation, leaf segmentation
Pseudo-landmark Homology Tutorial
Tags : pseudo-landmarking, homology, morphometrics, setaria
<script type="text/javascript">
function getTags() {
var tag_list = [];
var card_tags = document.getElementsByClassName("card-tags");
for (var i = 0; i < card_tags.length; i++) {
tags = card_tags[i].innerText;
tags = tags.replace("Tags: ", "").split(", ");
tag_list.push(...tags);
}
let unique_tags = [...new Set(tag_list)];
addTagsToSelect(unique_tags);
}
function addTagsToSelect(tags) {
var select_menu = document.getElementById("card-filter");
for (var i = 0; i < tags.length; i++) {
var opt = document.createElement("option");
opt.text = tags[i];
opt.value = tags[i];
select_menu.add(opt);
}
}
function filterCards(tag) {
var cards;
cards = document.getElementsByClassName("card");
for (var i = 0; i < cards.length; i++) {
var tags = cards[i].getElementsByClassName("card-tags")[0].getElementsByTagName("span")[0].innerText;
tags = tags.replace("Tags: ", "").split(", ");
if (tags.includes(tag)) {
cards[i].style.display = "block";
} else if (tag === 'show all') {
cards[i].style.display = "block";
} else {
cards[i].style.display = "none";
}
}
}
window.addEventListener('load', getTags())
</script>