The easiest way may be to run the filter in your controller. Something like this:
function MyCtrl($scope, notEmptyFilter)
{
//$scope.items is put into the scope somehow
$scope.filteredItems = notEmptyFilter($scope.items);
}
Then your HTML would look something like this: