This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
pliman 1.0.0
New functions
analyze_objects()
is now used as the main function to compute the number and shape of objects.measure_disease()
is now used as the main function to perform phytopatometry studies. The function can compute symptomatic area, as well as the number and shape of lesions.image_segment_iter()
is used to performs iterative image segmentation.conv_hull()
,poly_area()
,poly_mass()
,poly_spline()
,plot_contour()
, andplot_ellipse()
as utilities for analyzing polygons.dpi()
to compute the resolution (dots per inch) of an image.tune_tolerance()
for tunning thetolerance
parameter.
Deprecated functions.
objects_rgb()
will be depracated in the future. Now, to compute an index for each object use theobject_index
argument inanalyze_objects()
, for example,analyze_objects(object_index = "B")
.leaf_area()
will be depracated in the future. Now, combineanalyze_objects()
withget_measures()
to obtain the area and shape of objects (leaves).prop_segmented()
is now deprecated in favour ofimage_segment_iter()
.count_lesions()
is now deprecated. Now, to compute the number and shape of lesions, use the argumentshow_features = TRUE
inmeasure_disease()
.image_show()
is now deprecated in favour ofplot()
.
Minor improvements
- Include
fill_hull
argument insymptomatic_area()
andcount_lesions()
- Improve
image_contrast()
function to avoid error regarding image resolution. - New argument
subfolder
inimage_export()
to export an image to a subfolder. - Now
EBImage
installation is checked when pliman is installed. image_import()
now returns the image object instead of the path to the image. So, it is not necessarily to call it withinimage_import()
.