Assuming your list items have a fixed height, you can use line-height
combined with vertical-align: middle
to do this.
Example:
ul li {
display: block;
height: 100px;
line-height: 100px;
}
ul li img {
vertical-align: middle;
}
Working example here.