Recall measures the proportion of actual observations that belong to the positive class that were correctly classified by the algorithm. In other words, it measures how sensitive the algorithm is in detecting true positives. In general,
Recall = True Positives / (True Positives + False Negatives)
Using an example:

Recall = 150 / (150 + 50) = .75