Next Article in Journal
Localization Algorithm for 3D Sensor Networks: A Recursive Data Fusion Approach
Next Article in Special Issue
Evaluation of Calibration Equations by Using Regression Analysis: An Example of Chemical Analysis
Previous Article in Journal
An Augmented Reality Periscope for Submarines with Extended Visual Classification
Previous Article in Special Issue
Low-Cost Polyethylene Terephthalate Fluidic Sensor for Ultrahigh Accuracy Measurement of Liquid Concentration Variation
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Fish Segmentation in Sonar Images by Mask R-CNN on Feature Maps of Conditional Random Fields †

Department of Computer Science and Engineering, National Taiwan Ocean University, 2, Pei-Ning Rd., Keelung 202301, Taiwan
*
Author to whom correspondence should be addressed.
2021 International Symposium of Intelligent Signal and Communication Systems.
Sensors 2021, 21(22), 7625; https://doi.org/10.3390/s21227625
Submission received: 18 September 2021 / Revised: 9 November 2021 / Accepted: 15 November 2021 / Published: 17 November 2021
(This article belongs to the Special Issue State-of-the-Art Sensors Technology in Taiwan)

Abstract

:
Imaging sonar systems are widely used for monitoring fish behavior in turbid or low ambient light waters. For analyzing fish behavior in sonar images, fish segmentation is often required. In this paper, Mask R-CNN is adopted for segmenting fish in sonar images. Sonar images acquired from different shallow waters can be quite different in the contrast between fish and the background. That difference can make Mask R-CNN trained on examples collected from one fish farm ineffective to fish segmentation for the other fish farms. In this paper, a preprocessing convolutional neural network (PreCNN) is proposed to provide “standardized” feature maps for Mask R-CNN and to ease applying Mask R-CNN trained for one fish farm to the others. PreCNN aims at decoupling learning of fish instances from learning of fish-cultured environments. PreCNN is a semantic segmentation network and integrated with conditional random fields. PreCNN can utilize successive sonar images and can be trained by semi-supervised learning to make use of unlabeled information. Experimental results have shown that Mask R-CNN on the output of PreCNN is more accurate than Mask R-CNN directly on sonar images. Applying Mask R-CNN plus PreCNN trained for one fish farm to new fish farms is also more effective.

1. Introduction

In modern aquaculture, fish states are constantly monitored to ensure the health of the cultured fish. Because computer vision can provide noninvasive means of monitoring, computer vision-based systems have been developed for a variety of applications in aquaculture [1,2].
Figure 1 shows our AIoT based smart aquaculture system in which both the RGB camera and the sonar imaging device are used to capture the underwater images of fish inside an offshore cage. Our sonar imaging device helps to monitor the health condition of the fish when the lighting condition is poor, which often limits the usage of RGB cameras to capture clear images for fish monitoring. To achieve the goal of smart aquaculture, fish counting and fish body length estimation based on underwater images are the two essential functionalities. Both of them are important to estimate the growth curve of fish and the feeding amount of an aquaculture cage to achieve the goal of precise aquaculture. The Mask R-CNN deep learning model offers the fish detection and fish segmentation simultaneously based on the captured underwater sonar images. The results could be further used to count fish and estimate the body length of the fish in a non-intrusive manner. Non-intrusive methods can reduce the manual handling of the fish, thus, can prevent stress and disturbance among the fish school. It is in this sense that we integrated a non-contact and visual method to estimate the fish biological information specifically on its body length and biomass that can avoid fish injury and illness caused by fish catching to estimate the fish biological information. Although semantic object segmentation based on a CNN deep learning model and underwater images is not a new concept, to the best of our knowledge, the topic of this paper and the sensing technology for analyzing fish in sonar images are rarely studied.
The visual quality of underwater images can be poor because light can be heavily attenuated and scattered in water. Underwater image enhancement is usually required for analysis of the image of underwater objects [3,4]. On the other hand, imaging sonar systems often apply to fish monitoring in turbid or low ambient light waters [5,6,7,8,9]. Figure 2a depicts the underwater area covered by the imaging sonar system adopted in this paper. Figure 2b shows a drone view of a land-based fish farm overlayed with the rectified underwater sonar image. In sonar images, fish are often overlapping and the pixel value is proportional to the intensity of the received reflection of the sonar signal. In land-based fish farms, the sonar signal can be reflected from the fish, the facility, and the bottom and wall of the fish farm. Different materials can have different reflectivity for underwater sound. For example, the reflectivity of the fish is related to the species of the fish [9]. The reflectivity of sand is higher than that of mud [10]. The distance from the sonar system to an object also affects the intensity of the echo from this object. Even if the gain setting on the imaging sonar system is properly tuned, sonar images acquired from fish farms of different size, depth, and structural materials can be quite different in the contrast between fish and the background.
Fish segmentation is often required for computer vision-based monitoring of fish growth and behavior. Deep convolutional neural networks (CNNs) for instance segmentation, such as SGN [11], FCIS [12], Mask R-CNN [13], TensorMask [14], have shown excellent performances. Those CNNs can usually be transferred by fine-tuning to segment other target instances. In this paper, Mask R-CNN is adopted for fish segmentation in sonar images.
As Figure 2c shows, sonar images acquired from different land-based fish farms can be quite different in the echo from the fish and the bottom. That difference can make Mask R-CNN, which is fine-tuned based on training examples of one fish farm, ineffective to fish segmentation for the other fish farms. A method for fine-tuning and generalizing Mask R-CNN for fish segmentation in sonar images is worthy of investigation.
Figure 3 presents the proposed approach. A preprocessing CNN (PreCNN) for Mask R-CNN is proposed so that Mask R-CNN+PreCNN learned for one fish-cultured environment can effectively apply to new environments. PreCNN is a semantic segmentation network and integrated with conditional random fields (CRFs). PreCNN and Mask R-CNN can be separately trained and fine-tuned. As Figure 3a shows, the input of PreCNN comprises several successive frames of a sonar video. PreCNN outputs a two-channel semantic feature map, which represents the estimated posterior probabilities of each pixel belonging to the background and the fish. The semantic feature map is used to form a standardized three-channel input for Mask R-CNN, which comprises the fish-channel of the semantic feature map and two channels of zeros. Mask R-CNN is fine-tuned on the standardized input for fish segmentation. Figure 3b shows the flow of fish segmentation, where PreCNN, the module for forming the standardized input for Mask R-CNN, and Mask R-CNN sequentially apply. By considering the neural architectures for Mask R-CNN and PreCNN as a whole, the output of PreCNN is a semantic intermediate representation of successive sonar images. The proposed approach explicitly learns the semantic feature mapping, which has good potential for crossing different fish-cultured environments.
Mask R-CNN+PreCNN has the advantages:
  • Decoupling learning of fish instances from learning of fish-cultured environments: PreCNN learns a mapping from sonar images to a semantic feature map. Mask R-CNN is fine-tuned on the semantic feature map. Thus, learning of fish instances and learning of fish-cultured environments can be separated.
  • Utilizing temporal information in successive sonar-image frames: In noisy sonar images, fish identification is usually more accurate by multiple frames than by a single frame;
  • Semi-supervised learning: To reduce annotation costs, ambiguous pixels and pixels similar to annotated background pixels are not required to annotate. Images with partial or no pixel-level annotations can be used to train PreCNN in a semi-supervised learning manner.
Experimental results have shown that PreCNN can improve the accuracy of Mask R-CNN for fish segmentation, especially across different fish-cultured environments.
This paper is organized as follows. Related works are presented in Section 2. PreCNN is presented in Section 3. An extension of PreCNN, which can provide useful information for Mask R-CNN to segment overlapping fish, is also presented there. Experimental results are discussed in Section 4. Concluding remarks are drawn in Section 5.

2. Related Work

To monitor the states of fish in underwater areas with low optical visibility, imaging sonar systems are often without alternative. Applications of imaging sonar systems in aquaculture are broad, such as fish counting [5,15,16,17,18,19], recording fish schools [9,20], fish tracking [21], fish detection [8,22], and monitoring of fish behavior [6,7] and feeding [23,24]. Image processing algorithms, such as adaptive thresholding and background subtraction, often apply in those applications for fish segmentation. However, those algorithms are often sensitive to noise and sonar artifacts [25].
Object detection and image segmentation algorithms have been developed to detect objects in sonar images. In [26,27,28], unsupervised learning algorithms and likelihood ratio tests are proposed to separate the highlight and shadow regions of unknown objects from the background seabed. In [29], CNNs are found suitable for detecting objects of known shapes on the seabed. In [18,19], CNNs are also shown to be effective in fish counting in sonar images.
Mask R-CNN is widely used for instance segmentation in optical images, such as fish detection [30] and ship detection [31]. Mask R-CNN belongs to the currently dominant paradigm for instance segmentation—the detect-then-segment methodology [14]. According to the taxonomy of the instance segmentation networks [14,32], there are backbone networks extracting image features for object detection and segmentation. In sonar images, those backbone networks can couple fish instances with fish-cultured environments. In this paper, to decouple learning of fish instances from learning of fish-cultured environments in sonar images, PreCNN is developed to provide for Mask R-CNN the semantic information in sonar images.
Many CNNs for semantic segmentation [13,33,34,35,36] for optical or medical images have come out. A comprehensive review of semantic image segmentation by deep learning models can be found in [37]. In FCN [34], pre-trained CNNs for image classification are casted into a fully convolutional form for pixel-level classification. Full resolution feature maps are recovered by a upsampling network, which can combine information from shallow layers and deep layers by skip connections. Transposed convolution is widely used in the upsampling network. A drawback of transposed convolution is the checkerboard problem. This drawback can be coped with pixel-transposed convolution [38]. In DeepLab [35], it turns out that CNNs abstracting spatial information by successive max-pooling and downsampling can lose the spatial accuracy. Dilated (Atrous) convolution is thus introduced to enlarge the receptive field without a loss of feature map resolution. DeepLab also applies a fully connected CRF to improve the spatial consistency of the segmentation result.
In [39], it turns out that CNNs and dense CRFs can be trained in an end-to-end manner by formulating CRFs as recurrent neural networks (RNNs). The pairwise potentials in [39] are limited to weighted Gaussians on predefined image features. In [40], CNNs are combined with a Gaussian CRF network, where all parameters are trainable. Freeform pairwise potentials with all parameters trainable have come out, such as [36,41].
The attention mechanism has been applied to semantic segmentation. In [42], an attention model is proposed to learn to softly weights the multi-scale features when predicting the semantic label of the pixel. In [43], a position attention module and a channel attention module are appended on the top of a dilated FCN to learn the semantic interdependencies in spatial and channel dimensions, respectively.
Due to the high cost of pixel-level annotations, weakly- and semi-supervised learning algorithms of semantic segmentation, such as [44,45,46], have been proposed. The training set for those algorithms can comprise training examples with strong and weak pixel-level annotations and image-level annotations. On the other hand, few-shot semantic segmentation can segment test images given only a few annotated support images [47,48]. If there exist a lot of unlabeled and related examples, self-training can improve the semantic segmentation model [49]. However, those two approaches are out of the scope of the application considered in this paper.
In summary, sonar images can be noisy in shallow waters. CRFs can be integrated into PreCNN to get spatial consistent label maps. Since it is not easy to empirically set parameters for CRFs on sonar images, freeform pairwise potentials for CRFs with all parameters trainable are required. Besides, to get rid of laboriously annotating every pixel of a sonar image, end-to-end training for PreCNN in a semi-supervised learning manner is also preferable.

3. Materials and Methods

3.1. Problem Formulation

Let L denote a label set L   =   { 1 , , } . In an annotation image, a labelled pixel can be either a pixel outside a fish or a pixel in a fish. To give fish motion information in annotation images, the label of a pixel in a fish can also be related to the motion direction of the fish. That extension will be presented in Section 3.5.
Let X denote a multiple-channel image which is formed by stacking a sequence of one-channel sonar images. In this paper, X comprises three successive sonar images. Let Y denote the label map assigned to X and y i be the label of pixel i. The probability of Y given X in a CRF can be modeled by the Gibbs distribution as [36,39]
P ( Y | X )   =   1 Z ( X ) exp ( E ( Y | X ) ) ,
where Z ( X ) is the partition function and E ( Y | X ) is the Gibbs energy defined as
E ( Y | X )   =   i ψ u ( y i | X )   +   i j N i ψ p ( y i , y j | X ) .
In Equation (1), N i denotes a set of neighboring pixels of pixel i, ψ u ( y i | X ) denotes the unary potential, and ψ p ( y i , y j | X ) is the pairwise potential. The unary potential ψ u ( y i | X ) is the cost of assigning label y i to pixel i and can be defined on the output of a deep CNN ϕ u ( y i | X ) as
ψ u ( y i | X ) = log ( ϕ u ( y i | X ) ) .
The deep CNN ϕ u ( y i | X ) will be defined later. The pairwise potential ψ p ( y i , y j | X ) is the cost of assigning labels y i and y j , respectively, to pixels i and j. The potential ψ p ( y i , y j | X ) can be defined as [36]
ψ p ( y i , y j | X )   =   c ( y i , y j ) f ( f i , f j , d i j ) ,
where c ( u , v ) is the compatibility from label v to label u and f ( X i , X j , d i j ) is the similarity between pixels i and j in terms of image features f i and f j and the spatial distance d i , j between pixels i and j. The deep feature f i is extracted by ϕ u ( y i | X ) . In the proposed approach, c ( u , v ) , f ( f i , f j , d i j ) , and ϕ u ( y i | X ) are all trainable.

3.2. The Mean-Field Approximation to P ( Y | X )

For efficient inference of the CRF, the mean-field approximation Q ( Y | X ) to the distribution P ( Y | X ) often applies [36,39,40], where Q ( Y | X ) is of the fully factorized form
Q ( Y | X )   =   i Q i ( y i | X )
and minimizes the Kullback-Leibler (KL) divergence D K L ( Q | | P ) . The distribution Q i ( y i | X ) can be obtained by
Q i ( y i | X )   =   1 Z i exp ( ( ψ u ( y i | X )   +   ϕ p ( y i | X ) ) )
where Z i is the local normalization constant and
ϕ p ( y i   =   u | X )   =   v L c ( u , v ) j N i f ( f i , f j , d i j ) Q j ( y j = v | X ) .
Equation (2) can be turned into a fixed-point form as
Q i ( t ) ( y i | X )   =   1 Z i ( t ) exp ( ( ψ u ( y i | X )   +   ϕ p ( t 1 ) ( y i | X ) ) )
where
ϕ p ( t 1 ) ( y i   =   u | X )   =   v L c ( u , v ) j N i f ( f i , f j , d i j ) Q j ( t 1 ) ( y j   =   v | X )
with
Q i ( 0 ) ( y i | X )   =   1 Z i ( 0 ) exp ( ψ u ( y i | X ) ) .
The distribution function Q i ( y i | X ) for all pixels can be updated in parallel.

3.3. Semi-Supervised Learning

The distribution function Q ( Y | X ) can be learned in a manner of semi-supervised learning. For clarity, Θ denotes all parameters to learn for Q ( Y | X ) and Q ( Y | X ) is added by a subscript notation as Q Θ ( Y | X ) . Let H s be the annotation image for training example X s , and h s ; i ; u be the variable for indicating if the label of pixel i of X s is u. If pixel i of X s is manually annotated, h s ; i ; u { 0 , 1 } are all constant; otherwise, h s ; i ; u [ 0 , 1 ] are all latent variables. Additionally, we have u L h s ; i ; u   =   1 . The complete data likelihood function can be defined as
L c ( Θ )   =   s i u L Q i ; Θ h s ; i ; u ( y i   =   u | X s ) ,
and the complete data log-likelihood function is
l c ( Θ )   =   s i u L h s ; i ; u log ( Q i ; Θ ( y i   =   u | X s ) ) .
According to the EM algorithm, Θ can be estimated by maximizing the expected complete data log-likelihood function:
Θ ( t )   =   error Θ π ( Θ | Θ ( t 1 ) )
where
π ( Θ | Θ ( t 1 ) )   =   s i A s u L E Q i ; Θ ( t 1 ) [ h s ; i ; u ] log ( Q i ; Θ ( y i   =   u | X s ) )   +   C × i A s u L h s ; i ; u log ( Q i ; Θ ( y i   =   u | X s ) )
with A s the set of labeled pixels of X s and
E Q i ; Θ ( t 1 ) [ h s ; i ; u ]   =   Q i ; Θ ( t 1 ) ( y i   =   u | X s ) .
In π ( Θ | Θ ( t 1 ) ) , the labelled pixel is weighted by a factor C, which is set to 1 in this paper. A mini-batch gradient-descent algorithm with the loss function π ( Θ | Θ ( t 1 ) ) can be adopted to learn Θ .

3.4. The Neural Network Architecture

As Figure 4 shows, the distribution function Q ( Y | X ) can be implemented by a deep neural network, which comprises four parts for the four functions:
  • ϕ u ( y i | X ) : a deep CNN;
  • ϕ p ( y i | X ) : an RNN;
  • f ( f i , f j , d i j ) : a CNN comprising a sequence of 1 × 1 convolutional operations;
  • c ( u , v ) : a 1 × 1 convolutional operation.
The distribution function ϕ u ( y i | X ) is implemented by a deep CNN. This deep CNN consists of five blocks and its network architecture is similar to the P-Net [36]. The first four blocks comprise 3   ×   3 dilated convolutional layers with dilation rates 1, 2, 4, and 6, respectively. Dilated convolutional operations are adopted to enlarge receptive fields without a loss of feature map resolution. The outputs of the last layers of the first four blocks are concatenated together to be the input for the fifth block. The fifth block comprises one dropout layer and three 1   ×   1 convolutional layers.
The mean-field CRF inference, Equation (3), can be implemented as an RNN [39]. By padding, slicing, and concatenating the feature map from the first block of the CNN for ϕ u ( y i | X ) , the two functions f and c in Equation (4) can be implemented by 1   ×   1 convolutional operations. The output of f ( f i , f j , d i j ) is a product of two sigmoid functions for indicating if pixels i and j are nearby pixels and similar in image features. The function c ( u , v ) can be implemented by a 1   ×   1 convolutional operation with nonnegative weights, zero bias terms, and linear activation functions. Due to the memory space, N i only includes the pixel in the 3   ×   3 neighborhood of pixel i in this paper.

3.5. Segmentation of Overlapping Fish with Mask R-CNN

In addition to fish shapes [50], the fish motion direction is also a cue for segmenting overlapping fish. PreCNN d , which is an extension of PreCNN, provides motion information for Mask R-CNN for segmenting overlapping fish. In an annotation image for training PreCNN d , a fish pixel can be annotated by the category of the motion direction of the fish. In this paper, the fish motion direction is categorized into four directions: the north-west, north-east, south-west, and south-east directions. Thus, the output Q of PreCNN d is a 5-channel feature map, where one channel is for the background and the others are for the four motion direction categories.
To make Mask R-CNN utilize the fish motion direction, the output of PreCNN d is combined channel-wisely to provide multiple standardized inputs for Mask R-CNN. Fifteen combinations of the four motion-direction categories (the empty combination is excluded) can be considered. Thus, fifteen standardized 3-channel inputs for Mask R-CNN are created. A 3-channel standardized input comprises two channels of zeros and a channel which is the channel-wise sum of Q across the channels corresponding to the considered motion-direction categories. Each input presents a possible interpretation of fish shapes according to some motion directions. At last, apply the non-maximum-suppression technique to all detected fish masks to get the final results. Accordingly, the fish size can be estimated based on non-overlapping fish. In Mask R-CNN+PreCNN d , Mask R-CNN can be trained on the standardized input with the four fish-motion categories all considered.

4. Results

4.1. Test Environments

The sonar images for this experiment were collected from three environments. Figure 5 shows examples of sonar images collected from the three environments.
  • E-A:The first environment is an indoor land-based fish farm with a concrete bottom. The species of the fish in this fish farm is Cyprinus carpio haematopterus.
  • E-B: The second environment is the same as the first one except that the gain setting on the sonar system was higher to show more details.
  • E-C: The third environment is an outdoor land-based fish farm with a mud bottom. The species of the fish in this fish farm is Pampus argenteus.
Because it is not easy to precisely identify every fish in a sonar image, only the fish, whose boundary can be unambiguously identified, was annotated. The region around an annotated fish was annotated as the background. A region, where there are sure no fish, was also annotated as the background. Some regions in the annotation image can have no labels. Figure 6 shows an example of the annotation image and Table 1 shows the number of annotated examples.
In this experiment, the backbone network of Mask R-CNN was ResNet101. When Mask R-CNN was trained, the backbone network above the fifth block (included) and the head of Mask R-CNN were fine-tuned by the mini-batch stochastic gradient descent algorithm with at most 200 epochs.
The proposed algorithm was implemented in the Python programming language with software libraries OpenCV, Keras, and TensorFlow. The experiments were performed on a desktop with an Intel Core i7-7700 3.6-GHz CPU, 64-G RAM, and one NVIDIA TITAN RTX GPU card.

4.2. Performance Evaluation

In this experiment, the ground truth for a test image does not include ambiguous fish due to annotation difficulty. The average precision (AP) was estimated by five-fold cross-validation. Thus, a high AP indicates that most of the annotated fish are detected and have a high rank in the list of the detected fish. A low AP reveals that many annotated fish are not detected or there are many ambiguous fish, which are not ground-truthed, have a high rank in the list of the detected fish.

4.2.1. Mask R-CNN vs. Mask R-CNN+PreCNN

Table 2 shows the AP 0.5 (average precision with the mask IoU 0.5 ) and the AP 0.75 of Mask R-CNN and Mask R-CNN+PreCNN. The threshold for the confidence score in Mask R-CNN was set to 0.2 for calculating the AP. Observations on Table 2 are as follows.
  • The AP 0.5 of Mask R-CNN is high when the training and the test example are of the same environment.
  • The AP 0.5 of Mask R-CNN is degenerate when applying Mask R-CNN trained for one test environment to the other two test environments.
  • The AP 0.5 of Mask R-CNN across environments E-A and E-B is acceptable. Mask R-CNN trained for one test environment can apply to the same environment with a different but proper gain setting on the imaging sonar system.
  • The AP 0.5 of Mask R-CNN across environments E-A and E-C or across environments E-B and E-C is low. This is because the echoes reflected from the different fish species and the bottom of different materials show different patterns.
  • The overall AP 0.5 of Mask R-CNN can be improved if the training examples are from the three test environments.
  • When the training and test examples are of different environments, Mask R-CNN+ PreCNN is more accurate than Mask R-CNN. Besides, even though Mask R-CNN is fine-tuned on the examples of the three test environments, Mask R-CNN+PreCNN learned on the training example of one single test environment is at least as accurate as Mask R-CNN. That experimental result shows that Mask R-CNN based on the semantic feature map outputted by PreCNN is less dependent on the environment and supports the feasibility of the proposed approach.
  • Because the AP 0.75 of Mask R-CNN+PreCNN is better, Mask R-CNN+PreCNN can segment fish in a way more consistent with human annotations.
As Figure 7 shows, applying Mask R-CNN trained for environment E-A or E-B to environment E-C can miss some fish. A possible cause is that the fish in the sonar image of environment E-C is blurrier and has lower contrast. Applying Mask R-CNN trained for environment E-C to environment E-A or E-B can miss some fish and detect incorrect fish with high confidence scores. In summary, Mask R-CNN+PreCNN is more accurate than Mask R-CNN alone in using for a single test environment and in applying across different test environments.

4.2.2. Mask R-CNN+Image Preprocessing vs. Mask R-CNN+PreCNN

This experiment compared Mask R-CNN incorporated with contrast stretching and bilateral filtering to Mask R-CNN+PreCNN. The test for Mask R-CNN with contrast stretching evaluates if contrast stretching can transfer the training sonar image collected from one test environment into the training sonar image for the others. Figure 8a shows that the contrast in sonar images can be tuned by contrast stretching. However, by comparing Table 2 and Table 3, Mask R-CNN fine-tuned on the image, which is transformed from the training image for another test environment by contrast stretching, does not improve in crossing different test environments.
The test for Mask R-CNN with bilateral filtering evaluates if Mask R-CNN on the sonar image preprocessed with bilateral filtering is more accurate. Figure 8b shows examples of sonar images processed by a bilateral filter, where the background of the processed sonar image becomes less noisy. However, by comparing Table 2 and Table 3, bilateral filtering does not improve Mask R-CNN in the AP 0.5 .
Mask R-CNN+PreCNN is more accurate than Mask R-CNN incorporated with contrast stretching and bilateral filtering because PreCNN is a nonlinear mapping from successive sonar-image frames to a semantic feature map.

4.2.3. PreCNN vs. PreCNN with CNN Only

PreCNN only based on the CNN for ϕ u ( y i X ) without the pairwise potential was also analyzed. This version of PreCNN is referred to as PreCNN CNN   only . According to Table 2 and Table 4, PreCNN CNN   only is less accurate, especially in Environment E-C. As Figure 9 shows, this is probably because Mask R-CNN+PreCNN CNN   only often gives high confidence scores to detected fish. Thus, the fish not in the ground truth can have a high rank in the list of detected fish and the AP of the detection result can be lower. The output of PreCNN on fish is smoother. Mask R-CNN+PreCNN can rank the detected fish in a way more consistent with the way of human annotators probably because smooth boundaries are important cues for annotators to identify fish in sonar images.

4.2.4. Experimental Results of YOLOv4

YOLOv4 [51] is a well-known bounding-box object detection model. The training fish for YOLOv4 is only annotated with a bounding box, whereas a training fish for Mask R-CNN and PreCNN requires a mask annotation. The cost of annotating a training fish for YOLOv4 is much lower than that for Mask R-CNN and PreCNN. Table 5 shows that the AP 0.5 for YOLOv4 is lower than that for Mask R-CNN and Mask R-CNN+PreCNN. Particularly, the AP 0.5 of YOLOv4 sharply deteriorates when YOLOv4 is applied across the test environments E-B and E-C. The mask annotation of training fish is helpful for the detection and segmentation of fish in sonar images.

4.3. Segmentation of Overlapping Fish with Mask R-CNN+PreCNN d

In this experiment, sixteen sonar images from environment E-A were selected for testing Mask R-CNN+PreCNN d . Because annotators must definitely identify every fish including overlapping fish, challenging sonar images were not selected. A total of 243 fish including 50 overlapping fish were identified in those images. Figure 10 shows an example of segmenting overlapping fish. Fish locomotion comprises local and global motion and some motion directions are ambiguous within a small receptive field. Thus, it can be seen that there may be multiple labels of motion directions on a fish. Figure 11 shows the average precision-recall curve. All fish can be detected with 20 percent of false positives.

5. Conclusions

In this paper, a preprocessing CNN has been proposed to provide “standardized” feature maps for Mask R-CNN for fish segmentation in sonar images. The proposed preprocessing CNN is a semantic segmentation network and integrated with conditional random fields. The preprocessing CNN is aimed at decoupling learning fish instances from learning fish-cultured environments. As a result, the proposed approach can improve Mask R-CNN for segmenting fish in sonar images and can also ease applying Mask R-CNN across fish-cultured environments. In the future, the efficiency of the proposed framework will be improved by developing a lightweight fish-instance segmentation network on the proposed preprocessing CNN.

Author Contributions

Conceptualization, C.-C.C. and S.-C.C.; methodology, C.-C.C.; software, Y.-P.W.; validation, C.-C.C., Y.-P.W. and S.-C.C.; formal analysis, C.-C.C.; investigation, S.-C.C.; resources, Y.-P.W.; data curation, Y.-P.W.; writing—original draft preparation, C.-C.C.; writing—review and editing, S.-C.C.; visualization, Y.-P.W.; supervision, C.-C.C.; project administration, S.-C.C.; funding acquisition, S.-C.C. All authors have read and agreed to the published version of the manuscript.

Funding

This research was funded by Ministry of Science and Technology, Taiwan under grant number MOST 110-2221-E-019-048 and Fisheries Agency, Council of Agriculture, Taiwan under grant number 110AS-6.2.1-FA-F6. The APC was funded by Fisheries Agency, Council of Agriculture, Taiwan.

Institutional Review Board Statement

This study designs a monitoring system using an invasive approach. This study is not involving humans or animals.

Informed Consent Statement

This study designs a monitoring system using an invasive approach. This study is not involving humans or animals.

Data Availability Statement

The study did not report any data.

Acknowledgments

This work was supported in part by Ministry of Science and Technology and Fisheries Agency, Council of Agriculture, Taiwan under grand numbers MOST 110-2221-E-019-048- and 110AS-6.2.1-FA-F6, respectively.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Saberioon, M.; Gholizadeh, A.; Cisar, P.; Pautsina, A.; Urban, J. Application of machine viion systems in aquaculture with emphasis on fish: State-of-the-art and key issues. Rev. Aquac. 2017, 9, 369–387. [Google Scholar] [CrossRef]
  2. Zhou, Y.; Yu, H.; Wu, J.; Cui, Z.; Zhang, F. Fish Behavior Analysis Based on Computer Vision: A Survey. In Data Science; Mao, R., Wang, H., Xie, X., Lu, Z., Eds.; Springer: Singapore, 2019; pp. 130–141. [Google Scholar]
  3. Liu, R.; Fan, X.; Zhu, M.; Hou, M.; Luo, Z. Real-world underwater enhancement: Challenges, benchmarks, and solutions under natural light. IEEE Trans. Circuits Syst. Video Technol. 2020, 30, 4861–4875. [Google Scholar] [CrossRef]
  4. Chen, L.; Jiang, Z.; Tong, L.; Liu, Z.; Zhao, A.; Zhang, Q.; Dong, J.H.; Zhou, H. Perceptual underwater image enhancement with deep learning and physical priors. IEEE Trans. Circuits Syst. Video Technol. 2020, 31, 3078–3092. [Google Scholar] [CrossRef]
  5. Jun, H.; Asada, A. Acoustic counting method of upstream juvenile ayu plecoglossus altivelis by using DIDSON. In Proceedings of the 2007 Symposium on Underwater Technology and Workshop on Scientific Use of Submarine Cables and Related Technologies, Tokyo, Japan, 17–20 April 2007; pp. 459–462. [Google Scholar]
  6. Rakowitz, G.; Tušer, M.; Říha, M.; Jůza, T.; Balk, H.; Kubečka, J. Use of high-frequency imaging sonar (DIDSON) to observe fish behavior towards a surface trawl. Fish. Res. 2012, 123–124, 37–48. [Google Scholar] [CrossRef]
  7. Handegard, N.O. An overview of underwater acoustics applied to observe fish behaviour at the institute of marine research. In Proceedings of the 2013 MTS/IEEE OCEANS, Bergen, Norway, 10–14 June 2013; pp. 1–7. [Google Scholar]
  8. Wolff, L.M.; Badri-Hoeher, S. Imaging sonar-based fish detection in shallow waters. In Proceedings of the 2014 Oceans, St. John’s, NL, Canada, 14–19 September 2014; pp. 1–6. [Google Scholar]
  9. Martignac, F.; Daroux, A.; Bagliniere, J.-L.; Ombredane, D.; Guillard, J. The use of acoustic cameras in shallow waters: New hydroacoustic tools for monitoring migratory fish population. a review of DIDSON technology. Fish Fish. 2015, 16, 486–510. [Google Scholar] [CrossRef]
  10. Christ, R.D.; Wernli, R.L. Chapter 15—Sonar. In The ROV Manual, 2nd ed.; Christ, R.D., Wernli, R.L., Eds.; Butterworth-Heinemann: Oxford, UK, 2014; pp. 387–424. [Google Scholar]
  11. Liu, S.; Jia, J.; Fidler, S.; Urtasun, R. SGN: Sequential grouping networks for instance segmentation. In Proceedings of the 2017 IEEE International Conference on Computer Vision (ICCV), Venice, Italy, 22–29 October 2017; pp. 3516–3524. [Google Scholar]
  12. Li, Y.; Qi, H.; Dai, J.; Ji, X.; Wei, Y. Fully convolutional instance-aware semantic segmentation. In Proceedings of the 2017 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Venice, Italy, 22–29 October 2017; pp. 4438–4446. [Google Scholar]
  13. He, K.; Gkioxari, G.; Dollár, P.; Girshick, R. Mask R-CNN. IEEE Trans. Pattern Anal. Mach. Intell. 2020, 42, 386–397. [Google Scholar] [CrossRef] [PubMed]
  14. Chen, X.; Girshick, R.; He, K.; Dollar, P. TensorMask: A foundation for dense object segmentation. In Proceedings of the 2019 IEEE/CVF International Conference on Computer Vision (ICCV), Seoul, Korea, 27 October–2 November 2019; pp. 2061–2069. [Google Scholar]
  15. Guo, L.X.; Griffiths, J.W.R. Sonar modelling in fish abundance measurement. In Proceedings of the IEE Colloquium on Simulation Techniques Applied to Sonar, London, UK, 19 May 1988; pp. 3/1–3/3. [Google Scholar]
  16. Han, C.-H.; Uye, S.-I. Quantification of the abundance and distribution of the common jellyfish aurelia aurita s.l. with a dual-frequency identification sonar (DIDSON). J. Plankton Res. 2009, 31, 805–814. [Google Scholar] [CrossRef] [Green Version]
  17. Jing, D.; Han, J.; Wang, X.; Wang, G.; Tong, J.; Shen, W.; Zhang, J. A method to estimate the abundance of fish based on dual-frequency identification sonar (DIDSON) imaging. Fish. Sci. 2017, 83, 685–697. [Google Scholar] [CrossRef]
  18. Liu, L.; Lu, H.; Cao, Z.; Xiao, Y. Counting fish in sonar images. In Proceedings of the 2018 25th IEEE International Conference on Image Processing (ICIP), Athens, Greece, 7–10 October 2018; pp. 3189–3193. [Google Scholar]
  19. Liu, L.; Lu, H.; Xiong, H.; Xian, K.; Cao, Z.; Shen, C. Counting objects by blockwise classification. IEEE Trans. Circuits Syst. Video Technol. 2020, 30, 3513–3527. [Google Scholar] [CrossRef]
  20. Misund, O.A.; Coetzee, J. Recording fish schools by multi-beam sonar: Potential for validating and supplementing echo integration recordings of schooling fish. Fish. Res. 2000, 47, 149–159. [Google Scholar] [CrossRef]
  21. Jing, D.; Han, J.; Wang, G.; Wang, X.; Wu, J.; Chen, G. Dense multiple-target tracking based on dual frequency identification sonar (DIDSON) image. In Proceedings of the OCEANS 2016, Shanghai, China, 10–13 April 2016; pp. 1–5. [Google Scholar]
  22. Farmer, D.; Trevorrow, M.; Pedersen, B. Intermediate range fish detection with a 12-kHz sidescan sonar. J. Acoust. Soc. Am. 1999, 106, 2481–2491. [Google Scholar] [CrossRef]
  23. Acker, T.; Burczynski, J.; Hedgepeth, J.M.; Ebrahim, A. Digital Scanning Sonar for Fish Feeding Monitoring in Aquaculture; Tech. Rep.; Biosonics Inc.: Seattle, WA, USA, 2002. [Google Scholar]
  24. Llorens, S.; Pérez-Arjona, I.; Soliveres, E.; Espinosa, V. Detection and target strength measurements of uneaten feed pellets with a single beam echosounder. Aquac. Eng. 2017, 78 Pt B, 216–220. [Google Scholar] [CrossRef]
  25. Teixeira, P.V.; Hover, F.S.; Leonard, J.J.; Kaess, M. Multibeam data processing for underwater mapping. In Proceedings of the 2018 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), Madrid, Spain, 1–5 October 2018; pp. 1877–1884. [Google Scholar]
  26. Abu, A.; Diamant, R. A statistically-based method for the detection of underwater objects in sonar imagery. IEEE Sens. J. 2019, 19, 6858–6871. [Google Scholar] [CrossRef]
  27. Abu, A.; Diamant, R. Unsupervised local spatial mixture segmentation of underwater objects in sonar images. IEEE J. Ocean. Eng. 2019, 44, 1179–1197. [Google Scholar] [CrossRef]
  28. Abu, A.; Diamant, R. Enhanced fuzzy-based local information algorithm for sonar image segmentation. IEEE Trans. Image Process. 2020, 29, 445–460. [Google Scholar] [CrossRef]
  29. Valdenegro-Toro, M. End-to-end object detection and recognition in forward-looking sonar images with convolutional neural networks. In Proceedings of the 2016 IEEE/OES Autonomous Underwater Vehicles (AUV), Tokyo, Japan, 6–9 November 2016; pp. 144–150. [Google Scholar]
  30. Arvind, C.S.; Prajwal, R.; Bhat, P.N.; Sreedevi, A.; Prabhudeva, K.N. Fish detection and tracking in pisciculture environment using deep instance segmentation. In Proceedings of the TENCON 2019—2019 IEEE Region 10 Conference (TENCON), Kochi, India, 17–20 October 2019; pp. 778–783. [Google Scholar]
  31. Nie, S.; Jiang, Z.; Zhang, H.; Cai, B.; Yao, Y. Inshore ship detection based on mask r-cnn. In Proceedings of the IGARSS 2018—2018 IEEE International Geoscience and Remote Sensing Symposium, Valencia, Spain, 22–27 July 2018; pp. 693–696. [Google Scholar]
  32. Hafiz, A.M.; Bhat, G.M. A survey on instance segmentation: State of the art. Int. J. Multimed. Inf. Retr. 2020, 9, 171–189. [Google Scholar] [CrossRef]
  33. Ronneberger, O.; Fischer, P.; Brox, T. U-Net: Convolutional networks for biomedical image segmentation. In Proceedings of the Medical Image Computing and Computer-Assisted Intervention—MICCAI 2015, Munich, Germany, 5–9 October 2015; pp. 234–241. [Google Scholar]
  34. Shelhamer, E.; Long, J.; Darrell, T. Fully convolutional networks for semantic segmentation. IEEE Trans. Pattern Anal. Mach. Intell. 2017, 39, 640–651. [Google Scholar] [CrossRef]
  35. Chen, L.-C.; Papandreou, G.; Kokkinos, I.; Murphy, K.; Yuille, A. DeepLab: Semantic image segmentation with deep convolutional nets, atrous convolution, and fully connected CRFs. IEEE Trans. Pattern Anal. Mach. Intell. 2018, 40, 2018. [Google Scholar] [CrossRef]
  36. Wang, G.; Zuluaga, M.; Li, W.; Pratt, R.; Patel, P.; Aertsen, M.; Doel, T.; David, A.; Deprest, J.; Ourselin, S.; et al. DeepIGeoS: A deep interactive geodesic framework for medical image segmentation. IEEE Trans. Pattern Anal. Mach. Intell. 2019, 41, 1559–1573. [Google Scholar] [CrossRef]
  37. Minaee, S.; Boykov, Y.Y.; Porikli, F.; Plaza, A.J.; Kehtarnavaz, N.; Terzopoulos, D. Image segmentation using deep learning: A survey. IEEE Trans. Pattern Anal. Mach. Intell. 2021. [Google Scholar] [CrossRef]
  38. Gao, H.; Yuan, H.; Wang, Z.; Ji, S. Pixel transposed convolutional networks. IEEE Trans. Pattern Anal. Mach. Intell. 2020, 42, 1218–1227. [Google Scholar] [CrossRef] [PubMed]
  39. Zheng, S.; Jayasumana, S.; Romera-Paredes, B.; Vineet, V.; Su, Z.; Du, D.; Huang, C.; Torr, P.H.S. Conditional random fields as recurrent neural networks. In Proceedings of the 2015 IEEE International Conference on Computer Vision (ICCV), Santiago, Chile, 7–13 December 2015; pp. 1529–1537. [Google Scholar]
  40. Vemulapalli, R.; Tuzel, O.; Liu, M.; Chellappa, R. Gaussian conditional random field network for semantic segmentation. In Proceedings of the 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Las Vegas, NV, USA, 27–30 June 2016; pp. 3224–3233. [Google Scholar]
  41. Lin, G.; Shen, C.; van den Hengel, A.; Reid, I. Efficient piecewise training of deep structured models for semantic segmentation. In Proceedings of the 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Las Vegas, NV, USA, 27–30 June 2016; pp. 3194–3203. [Google Scholar]
  42. Chen, L.-C.; Yang, Y.; Wang, J.; Xu, W.; Yuille, A.L. Attention to scale: Scale-aware semantic image segmentation. In Proceedings of the 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Las Vegas, NV, USA, 27–30 June 2016; pp. 3640–3649. [Google Scholar]
  43. Fu, J.; Liu, J.; Tian, H.; Li, Y.; Bao, Y.; Fang, Z.; Lu, H. Dual attention network for scene segmentation. In Proceedings of the 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Long Beach, CA, USA, 15–20 June 2019; pp. 3141–3149. [Google Scholar]
  44. Papandreou, G.; Chen, L.; Murphy, K.P.; Yuille, A.L. Weakly-and semi-supervised learning of a deep convolutional network for semantic image segmentation. Proceedings of 2015 IEEE International Conference on Computer Vision (ICCV), Santiago, Chile, 7–13 December 2015; pp. 1742–1750. [Google Scholar]
  45. Pinheiro, P.O.; Collobert, R. From image-level to pixel-level labeling with convolutional networks. In Proceedings of the 2015 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Boston, MA, USA, 7–12 June 2015; pp. 1713–1721. [Google Scholar]
  46. Yao, Q.; Gong, X. Saliency guided self-attention network for weakly and semi-supervised semantic segmentation. IEEE Access 2020, 8, 413–414. [Google Scholar] [CrossRef]
  47. Wang, K.; Liew, J.H.; Zou, Y.; Zhou, D.; Feng, J. Panet: Few-shot image semantic segmentation with prototype alignment. arXiv 2019, arXiv:1908.06391. [Google Scholar]
  48. Liu, B.; Jiao, J.; Ye, Q. Harmonic feature activation for few-shot semantic segmentation. IEEE Trans. Image Process. 2021, 30, 3142–3153. [Google Scholar] [CrossRef] [PubMed]
  49. Zoph, B.; Ghiasi, G.; Lin, T.; Cui, Y.; Liu, H.; Cubuk, E.D.; Le, Q.V. Rethinking pre-training and self-training. arXiv 2020, arXiv:2006.06882. [Google Scholar]
  50. Clausen, S.; Greiner, K.; Andersen, O.; Lie, K.-A.; Schulerud, H.; Kavli, T. Automatic Segmentation of Overlapping Fish Using Shape Priors. In Image Analysis; Ersbøll, B.K., Pedersen, K.S., Eds.; Springer: Berlin/Heidelberg, Germany, 2007; pp. 11–20. [Google Scholar]
  51. Wang, C.-Y.; Bochkovskiy, A.; Liao, H.-Y.M. Scaled-YOLOv4: Scaling Cross Stage Partial Network. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Virtual, 19–25 June 2021; pp. 13029–13038. [Google Scholar]
Figure 1. The proposed AIoT based smart cage system using multi-mode sensors include a stereo camera, a sonar imaging camera, and a set of water quality detectors. The time series data of each sensor device are first processed by the associate end computing system and sent to the cloud platform which offers all the AI micro-service computing for precise aquaculture.
Figure 1. The proposed AIoT based smart cage system using multi-mode sensors include a stereo camera, a sonar imaging camera, and a set of water quality detectors. The time series data of each sensor device are first processed by the associate end computing system and sent to the cloud platform which offers all the AI micro-service computing for precise aquaculture.
Sensors 21 07625 g001
Figure 2. Illustrations of sonar images acquired from fish farms by the Garmin CHIRP imaging sonar system, where (a) depicts the underwater area covered by the imaging sonar system; (b) is a drone-view of a fish pond overlapped with the rectified sonar image; (c) shows two sonar images acquired from different land-based fish farms.
Figure 2. Illustrations of sonar images acquired from fish farms by the Garmin CHIRP imaging sonar system, where (a) depicts the underwater area covered by the imaging sonar system; (b) is a drone-view of a fish pond overlapped with the rectified sonar image; (c) shows two sonar images acquired from different land-based fish farms.
Sensors 21 07625 g002
Figure 3. The flow of Mask R-CNN+PreCNN: (a) the flow of training PreCNN and fine-tuning Mask R-CNN; (b) the flow of fish segmentation.
Figure 3. The flow of Mask R-CNN+PreCNN: (a) the flow of training PreCNN and fine-tuning Mask R-CNN; (b) the flow of fish segmentation.
Sensors 21 07625 g003
Figure 4. The neural architecture of Q ( y i | X ) , where F Δ x , Δ y denotes the feature map, which is of the same size of F and covers starting from the k   +   Δ y th row and the k   +   Δ x th column of F with k padded zeros at the top, bottom, left, and right side; in addition, “ ( Δ x , Δ y ) ” at the corner of the rectangle with solid lines indicates that the network inside is performed for each ( Δ x , Δ y ) .
Figure 4. The neural architecture of Q ( y i | X ) , where F Δ x , Δ y denotes the feature map, which is of the same size of F and covers starting from the k   +   Δ y th row and the k   +   Δ x th column of F with k padded zeros at the top, bottom, left, and right side; in addition, “ ( Δ x , Δ y ) ” at the corner of the rectangle with solid lines indicates that the network inside is performed for each ( Δ x , Δ y ) .
Sensors 21 07625 g004
Figure 5. The sonar images of the three test environments, where (a,b) show the fish farms for test environments E-A,B and E-C, respectively; (ce) show examples of the sonar images in test environments E-A, E-B, and E-C, respectively.
Figure 5. The sonar images of the three test environments, where (a,b) show the fish farms for test environments E-A,B and E-C, respectively; (ce) show examples of the sonar images in test environments E-A, E-B, and E-C, respectively.
Sensors 21 07625 g005
Figure 6. An example of the annotation image: (a)sonar image; (b) annotation image.
Figure 6. An example of the annotation image: (a)sonar image; (b) annotation image.
Sensors 21 07625 g006
Figure 7. Examples of applying Mask R-CNN and Mask R-CNN+PreCNN across different environments, where a fish in the ground truth and not detected is enclosed by a circle; the threshold of the confidence score for Mask R-CNN is 0.2 ; the first two rows show applying the model for E-A to E-C and applying the model for E-B to E-C, respectively, and the last two rows show applying the model for E-C to E-A and to E-B, respectively.
Figure 7. Examples of applying Mask R-CNN and Mask R-CNN+PreCNN across different environments, where a fish in the ground truth and not detected is enclosed by a circle; the threshold of the confidence score for Mask R-CNN is 0.2 ; the first two rows show applying the model for E-A to E-C and applying the model for E-B to E-C, respectively, and the last two rows show applying the model for E-C to E-A and to E-B, respectively.
Sensors 21 07625 g007
Figure 8. Examples of sonar images processed with contrast stretching and bilateral filtering, where (a) shows the source sonar image and the image transformed from the source image into the image for the target environment by contrast stretching; (b) shows the source image processed with a bilateral filter.
Figure 8. Examples of sonar images processed with contrast stretching and bilateral filtering, where (a) shows the source sonar image and the image transformed from the source image into the image for the target environment by contrast stretching; (b) shows the source image processed with a bilateral filter.
Sensors 21 07625 g008
Figure 9. Example results of Mask R-CNN+PreCNN and Mask R-CNN+PreCNN CNN   only , where the number associated with an object is the rank and the object with a blue number is not in the ground truth.
Figure 9. Example results of Mask R-CNN+PreCNN and Mask R-CNN+PreCNN CNN   only , where the number associated with an object is the rank and the object with a blue number is not in the ground truth.
Sensors 21 07625 g009
Figure 10. An example of segmenting overlapping fish by Mark R-CNN+PreCNN d , where the overlapping fish are highlighted by a circle and the label map is yielded according to the output Q of PreCNN d .
Figure 10. An example of segmenting overlapping fish by Mark R-CNN+PreCNN d , where the overlapping fish are highlighted by a circle and the label map is yielded according to the output Q of PreCNN d .
Sensors 21 07625 g010
Figure 11. The average precision-recall curve.
Figure 11. The average precision-recall curve.
Sensors 21 07625 g011
Table 1. The specifications of the dataset.
Table 1. The specifications of the dataset.
Test EnvironmentE-AE-BE-C
Total number of sonar images506035
Total number of annotated fish522794360
Table 2. The AP 0.5 and AP 0.75 of Mask R-CNN and Mask R-CNN+PreCNN.
Table 2. The AP 0.5 and AP 0.75 of Mask R-CNN and Mask R-CNN+PreCNN.
Test (AP 0.5 )
Mask R-CNNMask R-CNN+PreCNN
TrainingE-AE-BE-CE-AE-BE-C
E-A0.86 ± 0.060.71 ± 0.070.37 ± 0.070.97 ± 0.010.96 ± 0.030.75 ± 0.07
E-B0.66 ± 0.110.84 ± 0.060.17 ± 0.070.92 ± 0.040.99 ± 0.010.80 ± 0.02
E-C0.41 ± 0.040.17 ± 0.050.96 ± 0.010.85 ± 0.050.91 ± 0.030.95 ± 0.02
E-AB0.84 ± 0.040.84 ± 0.060.45 ± 0.08
E-BC0.71 ± 0.090.83 ± 0.060.86 ± 0.06
E-AC0.80 ± 0.060.61 ± 0.130.83 ± 0.04
E-ABC0.81 ± 0.080.79 ± 0.040.76 ± 0.03
Test (AP 0 . 75 )
Mask R-CNNMask R-CNN+PreCNN
TrainingE-AE-BE-CE-AE-BE-C
E-A0.47 ± 0.140.13 ± 0.030.04 ± 0.030.88 ± 0.050.84 ± 0.040.57 ± 0.10
E-B0.11 ± 0.070.47 ± 0.040.01 ± 0.010.75 ± 0.070.89 ± 0.050.60 ± 0.08
E-C0.10 ± 0.030.01 ± 0.010.71 ± 0.120.53 ± 0.060.70 ± 0.070.84 ± 0.03
Table 3. The AP 0.5 of Mask R-CNN with image preprocessing.
Table 3. The AP 0.5 of Mask R-CNN with image preprocessing.
Test (AP 0.5 )
Mask R-CNN+Contrast StretchingMask R-CNN+Bilateral Filtering
TrainingE-AE-BE-CE-AE-BE-C
E-A0.86 ± 0.060.67 ± 0.040.36 ± 0.050.86 ± 0.030.68 ± 0.040.38 ± 0.04
E-B0.61 ± 0.040.84 ± 0.060.15 ± 0.060.55 ± 0.130.84 ± 0.030.09 ± 0.08
E-C0.40 ± 0.060.08 ± 0.040.96 ± 0.010.41 ± 0.020.11 ± 0.030.89 ± 0.06
Table 4. Experimental results of Mask R-CNN+PreCNN CNN   only .
Table 4. Experimental results of Mask R-CNN+PreCNN CNN   only .
Test (AP 0.5 )
Mask R-CNN+PreCNN CNN   only
TrainingE-AE-BE-C
E-A0.90 ± 0.040.73 ± 0.060.62 ± 0.06
E-B0.85 ± 0.020.79 ± 0.030.60 ± 0.05
E-C0.79 ± 0.020.71 ± 0.070.57 ± 0.03
Table 5. Experimental results of YOLOv4.
Table 5. Experimental results of YOLOv4.
Test (AP 0.5 )
TrainingE-AE-BE-C
E-A0.57 ± 0.040.56 ± 0.010.45 ± 0.02
E-B0.47 ± 0.060.59 ± 0.040.28 ± 0.04
E-C0.40 ± 0.020.25 ± 0.020.47 ± 0.02
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Chang, C.-C.; Wang, Y.-P.; Cheng, S.-C. Fish Segmentation in Sonar Images by Mask R-CNN on Feature Maps of Conditional Random Fields. Sensors 2021, 21, 7625. https://doi.org/10.3390/s21227625

AMA Style

Chang C-C, Wang Y-P, Cheng S-C. Fish Segmentation in Sonar Images by Mask R-CNN on Feature Maps of Conditional Random Fields. Sensors. 2021; 21(22):7625. https://doi.org/10.3390/s21227625

Chicago/Turabian Style

Chang, Chin-Chun, Yen-Po Wang, and Shyi-Chyi Cheng. 2021. "Fish Segmentation in Sonar Images by Mask R-CNN on Feature Maps of Conditional Random Fields" Sensors 21, no. 22: 7625. https://doi.org/10.3390/s21227625

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop